Skip to content

Commit b23c065

Browse files
author
Luis Pabon
committed
Add nginx config to redirect EVERYTHING to https
1 parent ef5482b commit b23c065

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

nginx.conf

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
server {
2+
listen 80;
3+
rewrite ^(.*) https://$host$1 permanent;
4+
}

0 commit comments

Comments
 (0)