ht-docker-elk/nginx.conf

27 lines
708 B
Nginx Configuration File
Raw Normal View History

2018-01-24 15:46:15 +00:00
server {
2019-11-01 21:54:49 +00:00
listen [::]:3000 default_server;
2019-11-01 22:22:23 +00:00
listen *:3000 default_server;
2018-01-24 15:46:15 +00: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 21:54:49 +00:00
listen [::]:3001 default_server;
2019-11-01 22:22:23 +00:00
listen *:3001 default_server;
2018-01-24 15:46:15 +00: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;
}
}