1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/monica_ynh.git synced 2024-09-03 19:46:23 +02:00

Force https

I observed if we open monica.domain.tld it opens in http. To force https by default I added 
 # Force https
  if ($scheme = http) {
    rewrite ^ https://$server_name$request_uri? permanent;
  }
This commit is contained in:
anmol26s 2017-07-24 12:14:22 +05:30 committed by GitHub
parent 95941f8b65
commit 6538bf55f8

View file

@ -2,7 +2,10 @@ location ^~ YNH_EXAMPLE_PATH {
alias YNH_WWW_PATH;
try_files $uri $uri/ @monica;
index index.php;
# Force https
if ($scheme = http) {
rewrite ^ https://$server_name$request_uri? permanent;
}
location ~ \.php {
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
fastcgi_pass unix:/run/php/php7.0-fpm.sock;