lecoffre-front/backups/nginx/dev4.4nkweb.com-http.conf
Debian Dev4 f659362682
Some checks failed
build-and-push-ext / build_push (push) Failing after 6s
ci: docker_tag=ext feat(front): env build args + ID.Not flow fixes
2025-09-23 15:22:16 +00:00

16 lines
359 B
Plaintext

# HTTP server for ACME and redirect to HTTPS
server {
listen 80;
server_name dev4.4nkweb.com;
# ACME HTTP-01 challenges
location /.well-known/acme-challenge/ {
root /var/www/letsencrypt;
}
# Redirection vers HTTPS pour toutes les autres requêtes
location / {
return 301 https://$server_name$request_uri;
}
}