2018-01-24 15:46:15 +00:00
|
|
|
server {
|
|
|
|
listen [::]:80 default_server;
|
|
|
|
listen 80 default_server;
|
|
|
|
|
|
|
|
server_name _;
|
|
|
|
|
|
|
|
return 301 https://$host$request_uri;
|
|
|
|
}
|
|
|
|
|
|
|
|
server {
|
2019-11-01 12:10:35 +00:00
|
|
|
listen [::]:3000;
|
|
|
|
listen 3000;
|
2018-01-24 15:46:15 +00:00
|
|
|
|
|
|
|
server_name _;
|
|
|
|
|
|
|
|
auth_basic "Restricted Access";
|
|
|
|
auth_basic_user_file /etc/nginx/htpasswd.users;
|
|
|
|
|
|
|
|
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 12:10:35 +00:00
|
|
|
listen [::]:9201;
|
|
|
|
listen 9201;
|
2018-01-24 15:46:15 +00:00
|
|
|
|
|
|
|
server_name _;
|
|
|
|
|
|
|
|
auth_basic "Restricted Access";
|
|
|
|
auth_basic_user_file /etc/nginx/htpasswd.users;
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|