Skip to content

Commit

Permalink
Updated nginx.conf.
Browse files Browse the repository at this point in the history
  • Loading branch information
Lev4and committed Mar 16, 2024
1 parent d9a6d21 commit 70adb77
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,24 @@ http {
proxy_cache_bypass $http_upgrade;
}

location /kibana/ {
proxy_pass http://kibana:5601/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $http_connection;
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}

location /selenium/ {
proxy_pass http://selenium.hub:4444/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $http_connection;
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}

location /portainer/ {
proxy_pass http://portainer:9000/;
proxy_http_version 1.1;
Expand Down

0 comments on commit 70adb77

Please sign in to comment.