home · contact · privacy
Update Firefox.
[config] / bookworm / etc_files / static_websites / etc / nginx / sites-available / status.plomlompom.com.nginx
1 server {
2     listen 443 ssl;
3     server_name REPLACE_fqdn_ECALPER;
4     ssl_certificate /etc/letsencrypt/live/REPLACE_fqdn_ECALPER/fullchain.pem;
5     ssl_certificate_key /etc/letsencrypt/live/REPLACE_fqdn_ECALPER/privkey.pem;
6     root /var/www/status.plomlompom.com/;
7
8     location = / {
9         return 301 /users/plomlompom.html;
10     } 
11
12     # re-direct to .html endings
13     location ~ ^/(notice|users)/([^\.]*)/?$ {
14         rewrite ^/(notice|users)/([^\./]*)/?$ /$1/$2.html permanent;
15     }
16 }