Skip to content

Instantly share code, notes, and snippets.

@coolya
Created August 31, 2022 15:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save coolya/2b63a5f8e0da636b108c4f58f40a55fe to your computer and use it in GitHub Desktop.
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.
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