infra/roles/private/files/europa/http.drone.internal.simponic.xyz.conf

14 lines
269 B
Plaintext
Raw Normal View History

2024-03-09 03:19:05 -05:00
server {
listen 80;
server_name drone.internal.simponic.xyz;
location /.well-known/acme-challenge {
root /var/www/letsencrypt;
try_files $uri $uri/ =404;
}
location / {
rewrite ^ https://drone.internal.simponic.xyz$request_uri? permanent;
}
}