8 Commits

Author SHA1 Message Date
2e79bebcc4 1.0.16 2019-11-02 00:18:12 +01:00
9ca2f652d3 fix(core): update 2019-11-02 00:18:11 +01:00
9a26ddc52e 1.0.15 2019-11-01 23:51:38 +01:00
47001d0b27 fix(core): update 2019-11-01 23:51:38 +01:00
1f1e16f471 1.0.14 2019-11-01 23:22:23 +01:00
772c3a10ea fix(core): update 2019-11-01 23:22:23 +01:00
b03c2fb16e 1.0.13 2019-11-01 22:54:49 +01:00
2acd511608 fix(core): update 2019-11-01 22:54:49 +01:00
4 changed files with 7 additions and 17 deletions

View File

@@ -1,2 +1,2 @@
FROM blacktop/elastic-stack:latest FROM blacktop/elastic-stack:latest
COPY ./ssl.kibana.conf /etc/nginx/conf.d/ COPY ./nginx.conf /etc/nginx/conf.d/kibana.conf

View File

@@ -1,11 +1,6 @@
server { server {
listen [::]:3000; listen [::]:3000 default_server;
listen 3000; listen *:3000 default_server;
server_name ~.;
auth_basic "Restricted Access";
auth_basic_user_file /etc/nginx/htpasswd.users;
location / { location / {
proxy_pass http://127.0.0.1:5601; proxy_pass http://127.0.0.1:5601;
@@ -18,13 +13,8 @@ server {
} }
server { server {
listen [::]:3001; listen [::]:3001 default_server;
listen 3001; listen *:3001 default_server;
server_name ~.;
auth_basic "Restricted Access";
auth_basic_user_file /etc/nginx/htpasswd.users;
location / { location / {
proxy_pass http://127.0.0.1:9200; proxy_pass http://127.0.0.1:9200;

2
package-lock.json generated
View File

@@ -1,5 +1,5 @@
{ {
"name": "ht-docker-elk", "name": "ht-docker-elk",
"version": "1.0.12", "version": "1.0.16",
"lockfileVersion": 1 "lockfileVersion": 1
} }

View File

@@ -1,6 +1,6 @@
{ {
"name": "ht-docker-elk", "name": "ht-docker-elk",
"version": "1.0.12", "version": "1.0.16",
"description": "elastic stack with full basic authentication", "description": "elastic stack with full basic authentication",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {