1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/emailpoubelle_ynh.git synced 2024-09-03 18:26:29 +02:00
emailpoubelle_ynh/conf/nginx.conf

17 lines
302 B
Nginx Configuration File
Raw Normal View History

2019-03-05 22:43:49 +01:00
location __PATH__/ {
# Path to source
alias __FINALPATH__/ ;
# Force usage of https
if ($scheme = http) {
rewrite ^ https://$server_name$request_uri? permanent;
}
### PHP configuration
index www/index.php;
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
2018-11-18 16:00:35 +01:00
}