shiloh_automatisch/https/nginx/automatisch_letsencrypt_nginx.conf
2025-02-07 09:12:29 +09:00

20 lines
337 B
Plaintext

events {
worker_connections 1024;
}
http {
server {
listen 7757;
server_name automatisch.lasthourhosting.org;
location / {
proxy_pass http://main:7757;
}
location ~ /.well-known/acme-challenge/ {
root /var/www/certbot;
}
}
}