add redirect

This commit is contained in:
Aborn Jiang 2016-01-13 23:27:49 +09:00
parent f0d3eb5200
commit 1e3433c608
1 changed files with 9 additions and 0 deletions

9
nginx/aborn Normal file
View File

@ -0,0 +1,9 @@
server {
listen 80;
server_name aborn.me;
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $http_host;
proxy_pass http://127.0.0.1:4000;
}
}