You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
279 B
13 lines
279 B
upstream pushgateway {
|
|
server p_gw:9091;
|
|
}
|
|
|
|
server {
|
|
listen 0.0.0.0:9091;
|
|
server_name __;
|
|
location / {
|
|
auth_basic "Pushgateway server authentication";
|
|
auth_basic_user_file /etc/nginx/.htpasswd;
|
|
proxy_pass http://pushgateway;
|
|
}
|
|
}
|