mirror of
https://github.com/YunoHost-Apps/yunomonitor_ynh.git
synced 2024-09-03 17:46:11 +02:00
10 lines
222 B
Nginx Configuration File
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;
|
|
}
|
|
}
|