mirror of
https://github.com/YunoHost-Apps/20euros_ynh.git
synced 2024-09-03 18:05:53 +02:00
13 lines
249 B
Nginx Configuration File
13 lines
249 B
Nginx Configuration File
location YNH_WWW_PATH {
|
|
alias YNH_WWW_ALIAS ;
|
|
|
|
# Force https
|
|
if ($scheme = http) {
|
|
rewrite ^ https://$server_name$request_uri? permanent;
|
|
}
|
|
|
|
index index.html;
|
|
|
|
# Include SSOWAT user panel.
|
|
include conf.d/yunohost_panel.conf.inc;
|
|
}
|