11 lines
201 B
Text
11 lines
201 B
Text
server {
|
|
listen 80;
|
|
server_name {{ domain }};
|
|
|
|
client_max_body_size 500M;
|
|
|
|
location / { # Note: Trailing slash
|
|
proxy_pass http://localhost:3000; # Note: Trailing slash
|
|
}
|
|
|
|
}
|