Fix jwt-token

This commit is contained in:
2025-09-13 08:54:16 +02:00
parent a2403ab5cd
commit 22d925d14a
11 changed files with 585 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
# Simple server for HTTP challenges
server {
listen 80;
server_name _;
root /var/www/html;
# ACME challenge location
location /.well-known/acme-challenge/ {
root /var/www/html;
try_files $uri =404;
}
# Default location
location / {
return 200 "Certbot HTTP Challenge Server";
add_header Content-Type text/plain;
}
}
}