-
-
Save summic/1321925 to your computer and use it in GitHub Desktop.
reverse proxy for tumblr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
upstream tumblr { | |
server 72.32.231.8:80; | |
} | |
server { | |
listen 80; | |
server_name jyorr.com; | |
access_log /var/log/nginx/jyorr.access.log; | |
proxy_set_header X-Real-IP $remote_addr; | |
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | |
proxy_set_header Host $http_host; | |
proxy_set_header REMOTE-HOST $remote_addr; | |
proxy_redirect off; | |
proxy_max_temp_file_size 0; | |
location / { | |
proxy_pass http://tumblr; | |
break; | |
} | |
} | |
server { | |
listen 80; | |
server_name www.jyorr.com; | |
rewrite ^/(.*) http://jyorr.com/$1 permanent; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment