]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/imagery/templates/default/nginx_imagery.conf.erb
imagery: fix nginx listen
[chef.git] / cookbooks / imagery / templates / default / nginx_imagery.conf.erb
index 5b3b91eb4296f8be3cc1d23d9b71ee49c1142c41..5c740cdc966df395ebba5024194a566de6c2efb4 100644 (file)
@@ -1,8 +1,37 @@
 server {
-    listen       80;
-    server_name  <%= @name %>;
+    listen [::]:80;
+    listen *:80;
+    listen [::]:443 ssl;
+    listen *:443 ssl;
+    server_name  <%= @name %> a.<%= @name %> b.<%= @name %> c.<%= @name %><% @aliases.each do |alias_name| %> <%= alias_name %> a.<%= alias_name %> b.<%= alias_name %> c.<%= alias_name %><%- end -%>;
 
-    #FIXME WIP
-    #Needs to include or iterate through layers with rewrite + fastcgi
-    #Git checkout of web?
+    ssl_certificate /etc/ssl/certs/<%= @name %>.pem;
+    ssl_certificate_key /etc/ssl/private/<%= @name %>.key;
+
+    ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
+    ssl_ciphers <%= node[:ssl][:ciphers] -%>;
+    ssl_prefer_server_ciphers on;
+    ssl_session_cache shared:SSL:50m;
+    ssl_session_timeout 30m;
+    ssl_stapling on;
+    ssl_dhparam /etc/ssl/certs/dhparam.pem;
+    resolver <%= @resolvers.join(" ") %>;
+    resolver_timeout 5s;
+
+    root "/srv/<%= @name %>";
+    rewrite ^/\.well-known/acme-challenge/(.*)$ http://acme.openstreetmap.org/.well-known/acme-challenge/$1 permanent;
+
+    gzip on;
+    gzip_types text/plain text/css application/json application/javascript application/x-javascript text/javascript text/xml application/xml application/rss+xml application/atom+xml application/rdf+xml image/svg+xml; # text/html is implicit
+    gzip_min_length 512;
+    gzip_http_version 1.0;
+    gzip_proxied any;
+    gzip_comp_level 9;
+    gzip_vary on;
+
+    sendfile   on;
+    tcp_nopush on;
+
+    # Include site imagery layers
+    include /srv/imagery/nginx/<%= @name %>/layer-*.conf;
 }