mirror of
https://github.com/YunoHost-Apps/strut_ynh.git
synced 2024-09-03 20:26:33 +02:00
13 lines
331 B
Nginx Configuration File
13 lines
331 B
Nginx Configuration File
location __PATH__ {
|
|
alias __FINALPATH__/;
|
|
if ($scheme = http) {
|
|
rewrite ^ https://$server_name$request_uri? permanent;
|
|
}
|
|
index index.html;
|
|
try_files $uri $uri/ /index.html;
|
|
include conf.d/yunohost_panel.conf.inc;
|
|
}
|
|
|
|
location ~ ^__PATH__/(data|config|\.ht|db_structure\.xml|README) {
|
|
deny all;
|
|
}
|