Yu-Gi-Oh! Deck Building and Card Inventory Management web interface written in Common Lisp, utilizing HTMX.
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

28 linhas
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. }