1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/piwigo_ynh.git synced 2024-09-03 20:06:03 +02:00

Force https

The app is not forcing https, due to which app needs to me manually opened in https to make the communication secure.
This commit is contained in:
anmol26s 2018-09-10 16:52:17 +05:30 committed by GitHub
parent a19947807c
commit 08c9f6593e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,8 @@
location __PATH__ {
alias __FINALPATH__/;
if ($scheme = http) {
rewrite ^ https://$server_name$request_uri? permanent;
}
client_max_body_size 100M;
index index.php;
default_type text/html;