infra/roles/private/files/europa/http.roundcube.internal.simponic.xyz.conf
2024-01-08 02:56:59 -05:00

14 lines
277 B
Plaintext

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