Initial nginx run 05/05

Signed-off-by: Georg <georg@lysergic.dev>
This commit is contained in:
Georg Pfuetzenreuter 2021-08-30 20:58:40 +02:00
parent 1159349436
commit 1a496b5866
1 changed files with 13 additions and 0 deletions

13
nginx/05/intra.conf Normal file
View File

@ -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;
}
}