Skip to content

Instantly share code, notes, and snippets.

@syanle
Last active October 3, 2015 06:57
Show Gist options
  • Save syanle/548a6132e9153a2e6ebd to your computer and use it in GitHub Desktop.
Save syanle/548a6132e9153a2e6ebd to your computer and use it in GitHub Desktop.
Reversed nginx proxy
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