mirror of
https://github.com/portainer/portainer.git
synced 2025-07-20 22:09:41 +02:00
18 lines
331 B
Text
18 lines
331 B
Text
|
upstream dockerui {
|
||
|
server dockerui:9000;
|
||
|
}
|
||
|
|
||
|
server {
|
||
|
listen 80;
|
||
|
server_name localhost;
|
||
|
|
||
|
location / {
|
||
|
auth_basic "Docker UI";
|
||
|
auth_basic_user_file /etc/nginx/users.htpasswd;
|
||
|
|
||
|
proxy_http_version 1.1;
|
||
|
proxy_set_header Connection "";
|
||
|
proxy_pass http://dockerui;
|
||
|
}
|
||
|
}
|