Created
August 5, 2020 13:16
-
-
Save edgarMeinart/5799987d58547f8593221fc2b46586ec to your computer and use it in GitHub Desktop.
NGINX conf
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
# abc.example.com | |
server { | |
listen 80; | |
server_name abc.example.com; | |
location / { | |
proxy_pass http://127.0.0.1/abc$request_uri; | |
proxy_set_header Host example.com; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment