Skip to content

Instantly share code, notes, and snippets.

View coolya's full-sized avatar

Kolja Dummann coolya

View GitHub Profile
@coolya
coolya / nginx.conf
Created August 31, 2022 15:36
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 "";