blob: 0a20f3670253319c999aa9c079c986f08895470b [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
Nico Hubera73f8f32023-07-25 10:40:04 +000022 location /id/ {
23 alias /var/www/html/;
Nico Hubera1a296f2023-06-25 10:07:07 +000024 index index.php index.html;
25 }
Nico Hubera73f8f32023-07-25 10:40:04 +000026 location ~ ^/id/.*\.php$ {
27 fastcgi_split_path_info ^/id(.+\.php)(.*)$;
Nico Hubera1a296f2023-06-25 10:07:07 +000028 include fastcgi_params;
29 fastcgi_pass simpleid:9000;
30 fastcgi_index index.php;
Nico Hubera73f8f32023-07-25 10:40:04 +000031 fastcgi_param SCRIPT_FILENAME /var/www/html$fastcgi_script_name;
Nico Hubera1a296f2023-06-25 10:07:07 +000032 }
33}
34
35server {
36 listen 443 ssl default_server;
37 listen [::]:443 ssl default_server;
Nico Huber15edd772023-07-01 18:16:50 +000038 ssl_certificate /etc/nginx/certs/live/miau.local/fullchain.pem;
39 ssl_certificate_key /etc/nginx/certs/live/miau.local/privkey.pem;
Nico Huber38c14da2023-06-24 16:59:28 +000040 ssl_protocols TLSv1.3;
41 ssl_prefer_server_ciphers on;
42 #ssl_dhparam /etc/nginx/dhparam.pem;
43 ssl_ciphers EECDH+AESGCM:EDH+AESGCM;
44 ssl_ecdh_curve secp384r1;
45 ssl_session_timeout 10m;
46 ssl_session_cache shared:SSL:10m;
47 ssl_session_tickets off;
48 ssl_stapling on;
49 ssl_stapling_verify on;
50 resolver 8.8.8.8 8.8.4.4 valid=300s;
51 resolver_timeout 5s;
52 # Disable strict transport security for now. You can uncomment the following
53 # line if you understand the implications.
54 #add_header Strict-Transport-Security "max-age=63072000; includeSubDomains; preload";
55 add_header X-Frame-Options DENY;
56 add_header X-Content-Type-Options nosniff;
57 add_header X-XSS-Protection "1; mode=block";
Nico Huber8cd50ee2023-06-24 15:35:16 +000058
Nico Hubera1a296f2023-06-25 10:07:07 +000059 server_name review.miau.local;
Nico Huber8cd50ee2023-06-24 15:35:16 +000060
Nico Huber8cd50ee2023-06-24 15:35:16 +000061 location / {
Nico Hubera1a296f2023-06-25 10:07:07 +000062 proxy_pass http://gerrit:8080;
63 proxy_set_header X-Forwarded-For $remote_addr;
64 proxy_set_header Host $host;
Nico Huberf3193602023-07-02 14:56:01 +000065
66 location ~ ^/(bower_components|elements|fonts|styles)/ {
67 proxy_pass http://gerrit:8080;
68 proxy_set_header X-Forwarded-For $remote_addr;
69 proxy_set_header Host $host;
70 proxy_cache GERRIT;
71 proxy_cache_valid 200 1h;
72 proxy_cache_use_stale error timeout invalid_header updating http_500 http_503;
73 # Gerrit bug sets `private`, hence the whole location override:
74 proxy_ignore_headers Cache-Control;
75 }
Nico Huber8cd50ee2023-06-24 15:35:16 +000076 }
77}