Created
September 27, 2022 15:22
-
-
Save ErtebateWeb/0fb654b868997085586362c6a43e3178 to your computer and use it in GitHub Desktop.
Nginx reverse proxy for v2ray service
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
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