summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--nginx/05/intra.conf13
1 files changed, 13 insertions, 0 deletions
diff --git a/nginx/05/intra.conf b/nginx/05/intra.conf
new file mode 100644
index 0000000..baab902
--- /dev/null
+++ b/nginx/05/intra.conf
@@ -0,0 +1,13 @@
+server {
+ listen 10.0.0.3:443 ssl http2;
+ server_name web.sun.lysergic.dev web.syscid.com web;
+
+ ssl_certificate /etc/ssl/web/web.sun.lysergic.dev.crt;
+ ssl_certificate_key /etc/ssl/web/web.sun.lysergic.dev.key;
+
+ location / {
+ root /www;
+ index index.html;
+ autoindex on;
+ }
+}