Yu-Gi-Oh! Deck Building and Card Inventory Management web interface written in Common Lisp, utilizing HTMX.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
432B

  1. server {
  2. listen [::]:80;
  3. listen 80;
  4. server_name phntsm.ddns.net;
  5. root /var/www/html;
  6. location / {
  7. return 301 https://$host$request_uri;
  8. }
  9. location /.well-known/acme-challenge/ {
  10. alias /var/www/challenges/;
  11. try_files $uri =404;
  12. }
  13. location ~ /\.ht {
  14. deny all;
  15. }
  16. location /nginx_status {
  17. stub_status;
  18. allow 127.0.0.1; #only allow requests from localhost
  19. deny all; #deny all other hosts
  20. }
  21. }