Files
console/docker/nginx.conf
2024-04-29 22:49:40 +02:00

17 lines
308 B
Nginx Configuration File

server {
listen 3000;
listen [::]:3000;
server_name localhost;
location /console {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri /console/index.html;
}
location / {
absolute_redirect off;
return 301 /console;
}
}