X-Git-Url: https://git.cyclocoop.org/?a=blobdiff_plain;f=etc%2Fnginx%2Fnginx.conf;h=25aa317decdc1c18493dfef73dbd73164f4627ea;hb=6a5dc20807ccf237d131bd2231d0c0c345504428;hp=1ebd203f7fab107f5360c7fa6cda1a5b7d09a2e6;hpb=a5a6e6329b52aff5811314e611b3f6122eb21e5b;p=lhc%2Fateliers.git diff --git a/etc/nginx/nginx.conf b/etc/nginx/nginx.conf index 1ebd203..25aa317 100644 --- a/etc/nginx/nginx.conf +++ b/etc/nginx/nginx.conf @@ -66,6 +66,7 @@ http { open_file_cache_valid 30s; open_log_file_cache max=1000 inactive=20s min_uses=2 valid=1m; proxy_cache_use_stale updating; + proxy_temp_path /run/shm/cache/nginx/proxy_temp 1 2; reset_timedout_connection on; send_timeout 60; # NOTE: if the client stops reading data, free up the stale client connection after this much time. @@ -99,6 +100,19 @@ http { } include /etc/nginx/site.d/*/http.conf; include /etc/nginx/site.d/*/server.conf; + server { + listen 80 default_server; + server_name _; + return 302 $scheme://heureux-cyclage.org$request_uri; + } + server { + listen 443 default_server; + server_name _; + include /etc/nginx/conf.d/ssl.conf; + ssl_certificate /etc/nginx/x509.d/cyclo-www-tls/crt.pem; + ssl_certificate_key /etc/nginx/x509.d/cyclo-www-tls/key.pem; + return 302 $scheme://cyclocoop.org$request_uri; + } } pid /run/nginx.pid; user www-data;