Last active
October 3, 2015 06:57
-
-
Save syanle/548a6132e9153a2e6ebd to your computer and use it in GitHub Desktop.
Reversed nginx proxy
This file contains hidden or 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
server { | |
listen 80; | |
server_name bossye.ml; | |
access_log off; | |
resolver 8.8.8.8; | |
#charset koi8-r; | |
#access_log logs/host.access.log main; | |
location / { | |
proxy_set_header Accept-Encoding ""; | |
sub_filter_once off; | |
proxy_pass http://www.javhd.club; | |
proxy_redirect off; | |
proxy_set_header X-Real-IP $remote_addr; | |
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | |
sub_filter javhd.club bossye.ml; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment