Created
August 31, 2022 15:36
-
-
Save coolya/2b63a5f8e0da636b108c4f58f40a55fe to your computer and use it in GitHub Desktop.
Minimum nginx reverse proxy configuration to access MPS/IntelliJ webserver outside of localhost. Do not use this config with untrusted clients connecting to the IDE.
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 1024; | |
} | |
http { | |
server { | |
listen 63399; | |
location / { | |
proxy_set_header Referer ""; | |
proxy_set_header Origin ""; | |
proxy_pass http://localhost:63320; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment