diff options
Diffstat (limited to 'terminaldweller.com/cargo/nginx.conf')
-rw-r--r-- | terminaldweller.com/cargo/nginx.conf | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/terminaldweller.com/cargo/nginx.conf b/terminaldweller.com/cargo/nginx.conf new file mode 100644 index 0000000..4606586 --- /dev/null +++ b/terminaldweller.com/cargo/nginx.conf @@ -0,0 +1,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 + } + } +} |