d3vyce.fr/d3vyce.conf
d3vyce 2790427083
All checks were successful
docker-build
Fix nginx conf
2023-04-02 11:53:32 -04:00

22 lines
359 B
Plaintext

server {
listen 80 default_server;
listen 443 ssl;
root /config/www;
index index.html index.htm index.php;
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;
}