add actris service

This commit is contained in:
2026-01-13 16:11:10 +01:00
parent 9a708b6317
commit 260fb2283b
2 changed files with 31 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
# INC0150202 Kohlbrecher Joachim & Wall Edward Owen
server {
listen 80;
server_name actris.psi.ch;
return 301 https://$host$request_uri;
}
server {
listen 443 ssl;
server_name actris.psi.ch;
root /opt/webcontent/actris;
index index.html;
ssl_certificate /etc/nginx/certs/lx-docker-dmz-01.psi.ch.crt;
ssl_certificate_key /etc/nginx/private/lx-docker-dmz-01.psi.ch.key;
access_log /var/log/nginx/actris.access.log;
error_log /var/log/nginx/actris.error.log;
location / {
autoindex on;
autoindex_exact_size off;
autoindex_localtime on;
try_files $uri $uri/ =404;
}
}
+1
View File
@@ -15,6 +15,7 @@ services:
- /etc/nginx/nginx.conf:/etc/nginx/nginx.conf:ro
- /etc/nginx/conf.d:/etc/nginx/conf.d:ro
- /opt/webcontent/sinqstatus:/opt/webcontent/sinqstatus:ro
- /mount/actris:/opt/webcontent/actris:ro
- /opt/webcontent/DMZ:/opt/webcontent/DMZ:rw
networks:
- public