12 lines
281 B
Plaintext
12 lines
281 B
Plaintext
|
server {
|
||
|
listen [::]:80;
|
||
|
listen 80;
|
||
|
|
||
|
location / {
|
||
|
proxy_pass http://localhost:3000;
|
||
|
proxy_set_header Host $host;
|
||
|
# auth_basic "Restricted";
|
||
|
# auth_basic_user_file /etc/nginx/.htpasswd;
|
||
|
|
||
|
}
|
||
|
}
|