Files

27 lines
708 B
Nginx Configuration File
Raw Permalink Normal View History

2018-01-24 16:46:15 +01:00
server {
2019-11-01 22:54:49 +01:00
listen [::]:3000 default_server;
2019-11-01 23:22:23 +01:00
listen *:3000 default_server;
2018-01-24 16:46:15 +01:00
location / {
proxy_pass http://127.0.0.1:5601;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
}
server {
2019-11-01 22:54:49 +01:00
listen [::]:3001 default_server;
2019-11-01 23:22:23 +01:00
listen *:3001 default_server;
2018-01-24 16:46:15 +01:00
location / {
proxy_pass http://127.0.0.1:9200;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
}