Yu-Gi-Oh! Deck Building and Card Inventory Management web interface written in Common Lisp, utilizing HTMX.
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

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