d3vyce.fr/d3vyce.conf
d3vyce 4aebe716d8
All checks were successful
docker-build
Fix nginx conf
2023-04-02 11:50:47 -04:00

20 lines
318 B
Plaintext

server {
listen 80 default_server;
root /config/www;
index index.html;
server_name _;
client_max_body_size 0;
location / {
if ($request_uri ~ ^/(.*)\.html) {
return 302 /$1;
}
try_files $uri $uri.html $uri/ =404;
}
error_page 404 /404-error.html;
}