1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/yunomonitor_ynh.git synced 2024-09-03 17:46:11 +02:00
yunomonitor_ynh/conf/nginx.conf
2020-10-04 22:11:03 +02:00

10 lines
222 B
Nginx Configuration File

location ^~ '/.well-known/yunomonitor/' {
default_type "text/plain";
alias __FINALPATH__/well-known/;
# Force usage of https
if ($scheme = http) {
rewrite ^ https://$server_name$request_uri? permanent;
}
}