Nico Huber | f319360 | 2023-07-02 14:56:01 +0000 | [diff] [blame^] | 1 | proxy_cache_path /var/cache/nginx/gerrit levels=2 keys_zone=GERRIT:1m inactive=1w max_size=16m; |
| 2 | |
Nico Huber | 8cd50ee | 2023-06-24 15:35:16 +0000 | [diff] [blame] | 3 | server { |
Nico Huber | 38c14da | 2023-06-24 16:59:28 +0000 | [diff] [blame] | 4 | listen 80; |
| 5 | listen [::]:80; |
| 6 | |
Nico Huber | 15edd77 | 2023-07-01 18:16:50 +0000 | [diff] [blame] | 7 | location /.well-known/acme-challenge/ { |
| 8 | root /var/www/certbot; |
| 9 | } |
| 10 | |
| 11 | location / { |
| 12 | return 301 https://$host$request_uri; |
| 13 | } |
Nico Huber | 38c14da | 2023-06-24 16:59:28 +0000 | [diff] [blame] | 14 | } |
| 15 | |
| 16 | server { |
| 17 | listen 443 ssl; |
| 18 | listen [::]:443 ssl; |
Nico Huber | a1a296f | 2023-06-25 10:07:07 +0000 | [diff] [blame] | 19 | |
| 20 | server_name id.miau.local; |
| 21 | |
| 22 | root /var/www/html; |
| 23 | location / { |
| 24 | index index.php index.html; |
| 25 | } |
| 26 | location ~ \.php$ { |
| 27 | include fastcgi_params; |
| 28 | fastcgi_pass simpleid:9000; |
| 29 | fastcgi_index index.php; |
| 30 | fastcgi_param SCRIPT_FILENAME $document_root/$fastcgi_script_name; |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | server { |
| 35 | listen 443 ssl default_server; |
| 36 | listen [::]:443 ssl default_server; |
Nico Huber | 15edd77 | 2023-07-01 18:16:50 +0000 | [diff] [blame] | 37 | ssl_certificate /etc/nginx/certs/live/miau.local/fullchain.pem; |
| 38 | ssl_certificate_key /etc/nginx/certs/live/miau.local/privkey.pem; |
Nico Huber | 38c14da | 2023-06-24 16:59:28 +0000 | [diff] [blame] | 39 | ssl_protocols TLSv1.3; |
| 40 | ssl_prefer_server_ciphers on; |
| 41 | #ssl_dhparam /etc/nginx/dhparam.pem; |
| 42 | ssl_ciphers EECDH+AESGCM:EDH+AESGCM; |
| 43 | ssl_ecdh_curve secp384r1; |
| 44 | ssl_session_timeout 10m; |
| 45 | ssl_session_cache shared:SSL:10m; |
| 46 | ssl_session_tickets off; |
| 47 | ssl_stapling on; |
| 48 | ssl_stapling_verify on; |
| 49 | resolver 8.8.8.8 8.8.4.4 valid=300s; |
| 50 | resolver_timeout 5s; |
| 51 | # Disable strict transport security for now. You can uncomment the following |
| 52 | # line if you understand the implications. |
| 53 | #add_header Strict-Transport-Security "max-age=63072000; includeSubDomains; preload"; |
| 54 | add_header X-Frame-Options DENY; |
| 55 | add_header X-Content-Type-Options nosniff; |
| 56 | add_header X-XSS-Protection "1; mode=block"; |
Nico Huber | 8cd50ee | 2023-06-24 15:35:16 +0000 | [diff] [blame] | 57 | |
Nico Huber | a1a296f | 2023-06-25 10:07:07 +0000 | [diff] [blame] | 58 | server_name review.miau.local; |
Nico Huber | 8cd50ee | 2023-06-24 15:35:16 +0000 | [diff] [blame] | 59 | |
Nico Huber | 8cd50ee | 2023-06-24 15:35:16 +0000 | [diff] [blame] | 60 | location / { |
Nico Huber | a1a296f | 2023-06-25 10:07:07 +0000 | [diff] [blame] | 61 | proxy_pass http://gerrit:8080; |
| 62 | proxy_set_header X-Forwarded-For $remote_addr; |
| 63 | proxy_set_header Host $host; |
Nico Huber | f319360 | 2023-07-02 14:56:01 +0000 | [diff] [blame^] | 64 | |
| 65 | location ~ ^/(bower_components|elements|fonts|styles)/ { |
| 66 | proxy_pass http://gerrit:8080; |
| 67 | proxy_set_header X-Forwarded-For $remote_addr; |
| 68 | proxy_set_header Host $host; |
| 69 | proxy_cache GERRIT; |
| 70 | proxy_cache_valid 200 1h; |
| 71 | proxy_cache_use_stale error timeout invalid_header updating http_500 http_503; |
| 72 | # Gerrit bug sets `private`, hence the whole location override: |
| 73 | proxy_ignore_headers Cache-Control; |
| 74 | } |
Nico Huber | 8cd50ee | 2023-06-24 15:35:16 +0000 | [diff] [blame] | 75 | } |
| 76 | } |