This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
ka
/
ansible-role-nginx
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
bugfix: did redirect acme challange request to https
master
Markus Katharina Brechtel
6 years ago
parent
6bea7d55e0
commit
570ddfdcea
1 changed files
with
3 additions
and
1 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-1
templates/vhost.conf.j2
+ 3
- 1
templates/vhost.conf.j2
View File
@@ -55,6 +55,8 @@ server {
root /var/www/default;
root /var/www/default;
}
}
return 301 https://$host$request_uri;
location / {
return 301 https://$host$request_uri;
}
}
}
Write
Preview
Loading…
Cancel
Save