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:
parent
95941f8b65
commit
6538bf55f8
1 changed files with 4 additions and 1 deletions
|
@ -2,7 +2,10 @@ location ^~ YNH_EXAMPLE_PATH {
|
||||||
alias YNH_WWW_PATH;
|
alias YNH_WWW_PATH;
|
||||||
try_files $uri $uri/ @monica;
|
try_files $uri $uri/ @monica;
|
||||||
index index.php;
|
index index.php;
|
||||||
|
# Force https
|
||||||
|
if ($scheme = http) {
|
||||||
|
rewrite ^ https://$server_name$request_uri? permanent;
|
||||||
|
}
|
||||||
location ~ \.php {
|
location ~ \.php {
|
||||||
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
|
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
|
||||||
fastcgi_pass unix:/run/php/php7.0-fpm.sock;
|
fastcgi_pass unix:/run/php/php7.0-fpm.sock;
|
||||||
|
|
Loading…
Add table
Reference in a new issue