1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/monica_ynh.git synced 2024-09-03 19:46:23 +02:00
monica_ynh/conf/nginx.conf
anmol26s 6538bf55f8 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;
  }
2017-07-24 12:14:22 +05:30

22 lines
605 B
Nginx Configuration File

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;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param REMOTE_USER $remote_user;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param SCRIPT_FILENAME $request_filename;
}
}
location @monica {
rewrite /(.*)$ /index.php?/$1 last;
}