new service actris-test.psi.ch

This commit is contained in:
2026-01-13 15:16:29 +01:00
parent c06bc0086f
commit b453de1e32
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-test.psi.ch;
return 301 https://$host$request_uri;
}
server {
listen 443 ssl;
server_name actris-test.psi.ch;
root /opt/webcontent/actris-test;
index index.html;
ssl_certificate /etc/nginx/certs/actris-test.psi.ch.crt;
ssl_certificate_key /etc/nginx/private/actris-test.psi.ch.key;
access_log /var/log/nginx/actris-test.access.log;
error_log /var/log/nginx/actris-test.error.log;
location / {
autoindex on;
autoindex_exact_size off;
autoindex_localtime on;
try_files $uri $uri/ =404;
}
}
+1
View File
@@ -18,6 +18,7 @@ services:
- /etc/nginx/nginx.conf:/etc/nginx/nginx.conf:ro
- /etc/nginx/conf.d:/etc/nginx/conf.d:ro
- /opt/webcontent/sinqstatus-test:/opt/webcontent/sinqstatus-test:ro
- /mount/actris:/opt/webcontent/actris-test:ro
- /opt/webcontent/it-strategy-dashboard/frontend/:/opt/webcontent/it-strategy-dashboard/:ro
networks:
- public