Created
January 21, 2021 09:46
-
-
Save zonque/2625eb034135f9b139cbd4d55bbabc9f to your computer and use it in GitHub Desktop.
This file contains 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 8009; | |
location / { | |
add_header Access-Control-Allow-Origin * always; | |
add_header Access-Control-Allow-Headers * always; | |
add_header Access-Control-Allow-Methods * always; | |
proxy_pass http://localhost:8008; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment