koopa-admin-log/configs/exchange-landing/nginx-landing.conf
2026-07-09 12:06:59 +02:00

24 lines
513 B
Text

# Exchange landing — :9014 (behind Caddy — no port in Location)
server {
listen 9014;
listen [::]:9014;
server_name exchange.hacktivism.ch _;
root /var/www/exchange-landing;
index index.html;
absolute_redirect off;
port_in_redirect off;
location = / {
return 302 /intro/;
}
location = /intro {
return 302 /intro/;
}
location /intro/ {
alias /var/www/exchange-landing/;
}
location / {
try_files $uri $uri/ =404;
}
}