aboutsummaryrefslogblamecommitdiffstats
path: root/terminaldweller.com/cargo/nginx.conf
blob: 46065865b32f20ded1b84d7210892af93fa862fa (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                                          
http {
  server {
    listen 8080 ssl;
    keepalive_timeout 70;
    ssl_certificate /certs/server.cert;
    ssl_certificate_key /certs/server.key;
    ssl_protocols TLSv1.2 TLSv1.3;
    ssl_ciphers HIGH:!aNULL:!MD5;
    
    location / {
      root /cargo
    }
  }
}