12 lines
281 B
Nginx Configuration File
12 lines
281 B
Nginx Configuration File
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;
|
|
|
|
}
|
|
} |