werc-1.5.0-tweaks

Tweaks for the werc website builder created by the mad architect Uriel
Log | Files | Refs | README

nunosempere.com-simple-with-certbot (687B)


      1 # Old config:
      2  server {
      3  
      4  
      5       listen 443 ssl;  # managed by Certbot
      6       ssl_certificate /etc/letsencrypt/live/nunosempere.com/fullchain.pem;  # managed by Certbot
      7       ssl_certificate_key /etc/letsencrypt/live/nunosempere.com/privkey.pem;  # managed by Certbot
      8       include /etc/letsencrypt/options-ssl-nginx.conf;  # managed by Certbot
      9       ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem;  # managed by Certbot
     10       # listen 80;
     11       # listen [::]:80;
     12  
     13       root /home/www/werc/werc-1.5.0/sites/nunosempere.com;
     14       index index.html index.htm index.nginx-debian.html;
     15       server_name nunosempere.com;
     16  
     17       location / {
     18          try_files $uri $uri/ =404;
     19       }
     20  }
     21