Skip to content

Commit d2ae30f

Browse files
committed
Configure nginx to redirect from http to https.
Addressed to #72
1 parent 76029ab commit d2ae30f

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed
+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
server {
2+
listen 80;
3+
server_name my-stamps.ru www.my-stamps.ru;
4+
server_tokens off;
5+
6+
return 301 https://$host$request_uri;
7+
}

0 commit comments

Comments
 (0)