Files
WebHosting/conf.d/fluid-eos-test.conf
T
2025-11-24 10:33:04 +01:00

30 lines
640 B
Plaintext

# Churakov Sergey - ISPD migration
server {
listen 80;
server_name fluid-eos-test.psi.ch;
return 301 https://$host$request_uri;
}
server {
listen 443 ssl;
server_name fluid-eos-test.psi.ch;
root /opt/webcontent/fluid-eos;
index index.html;
ssl_certificate /etc/nginx/certs/fluid-eos-test.psi.ch.crt;
ssl_certificate_key /etc/nginx/private/fluid-eos-test.psi.ch.key;
access_log /var/log/nginx/fluid-eos-test.access.log;
error_log /var/log/nginx/fluid-eos-test.error.log;
location / {
autoindex on;
autoindex_exact_size off;
autoindex_localtime on;
}
}