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

Force https

This commit is contained in:
anmol26s 2017-11-09 12:56:12 +05:30 committed by GitHub
parent aa075b2051
commit cbe6b84841
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,6 +6,11 @@ location PATHTOCHANGE/ {
fastcgi_param REMOTE_USER $remote_user;
client_max_body_size 50M;
# Force https
if ($scheme = http) {
rewrite ^ https://$server_name$request_uri? permanent;
}
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
}