Skip to content

Instantly share code, notes, and snippets.

@YamlEngineer
Last active October 7, 2022 11:46
Show Gist options
  • Save YamlEngineer/08e2e46986f90a92c3db37f472e91db6 to your computer and use it in GitHub Desktop.
Save YamlEngineer/08e2e46986f90a92c3db37f472e91db6 to your computer and use it in GitHub Desktop.
Nginx reverse proxy for v2ray service
events {
worker_connections 500;
# multi_accept on;
}
http {
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
upstream v2ray {
server IP_NEED:80;
}
server {
listen 80;
location /ray {
proxy_pass http://v2ray/ray;
proxy_http_version 1.1;
proxy_set_header Host localhoster.ml;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment