blob: 65f7a7ae409a326a41653ad778fceac9576a9bc0 [file] [log] [blame]
Nico Huberf3193602023-07-02 14:56:01 +00001proxy_cache_path /var/cache/nginx/gerrit levels=2 keys_zone=GERRIT:1m inactive=1w max_size=16m;
2
Nico Huber8cd50ee2023-06-24 15:35:16 +00003server {
Nico Huber38c14da2023-06-24 16:59:28 +00004 listen 80;
5 listen [::]:80;
6
Nico Huber15edd772023-07-01 18:16:50 +00007 location /.well-known/acme-challenge/ {
8 root /var/www/certbot;
9 }
10
11 location / {
12 return 301 https://$host$request_uri;
13 }
Nico Huber38c14da2023-06-24 16:59:28 +000014}
15
16server {
17 listen 443 ssl;
18 listen [::]:443 ssl;
Nico Hubera1a296f2023-06-25 10:07:07 +000019
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
34server {
35 listen 443 ssl default_server;
36 listen [::]:443 ssl default_server;
Nico Huber15edd772023-07-01 18:16:50 +000037 ssl_certificate /etc/nginx/certs/live/miau.local/fullchain.pem;
38 ssl_certificate_key /etc/nginx/certs/live/miau.local/privkey.pem;
Nico Huber38c14da2023-06-24 16:59:28 +000039 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 Huber8cd50ee2023-06-24 15:35:16 +000057
Nico Hubera1a296f2023-06-25 10:07:07 +000058 server_name review.miau.local;
Nico Huber8cd50ee2023-06-24 15:35:16 +000059
Nico Huber8cd50ee2023-06-24 15:35:16 +000060 location / {
Nico Hubera1a296f2023-06-25 10:07:07 +000061 proxy_pass http://gerrit:8080;
62 proxy_set_header X-Forwarded-For $remote_addr;
63 proxy_set_header Host $host;
Nico Huberf3193602023-07-02 14:56:01 +000064
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 Huber8cd50ee2023-06-24 15:35:16 +000075 }
76}