aboutsummaryrefslogtreecommitdiffstats
path: root/terminaldweller.com/cargo/nginx.conf
diff options
context:
space:
mode:
authorterminaldweller <thabogre@gmail.com>2022-02-17 16:07:22 +0000
committerterminaldweller <thabogre@gmail.com>2022-02-17 16:07:22 +0000
commit934d6b1e01bbdc4aec70fed21b092fa9094c7257 (patch)
treeb2b8231d89ce5e1851fb7af76ee0bbc0ae8af77b /terminaldweller.com/cargo/nginx.conf
parentbbox config for linux and freebsd (diff)
downloadscripts-934d6b1e01bbdc4aec70fed21b092fa9094c7257.tar.gz
scripts-934d6b1e01bbdc4aec70fed21b092fa9094c7257.zip
cargo
Diffstat (limited to 'terminaldweller.com/cargo/nginx.conf')
-rw-r--r--terminaldweller.com/cargo/nginx.conf14
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
+ }
+ }
+}