29 lines
No EOL
489 B
Nginx Configuration File
29 lines
No EOL
489 B
Nginx Configuration File
user www-data;
|
|
worker_processes auto;
|
|
pid /run/nginx.pid;
|
|
error_log /var/log/nginx/error.log;
|
|
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
client_max_body_size 20M;
|
|
|
|
server {
|
|
listen 80;
|
|
server_name localhost;
|
|
|
|
location / {
|
|
proxy_pass http://localhost:3000;
|
|
proxy_read_timeout 30m;
|
|
proxy_connect_timeout 30m;
|
|
}
|
|
|
|
location /api/v1/ {
|
|
proxy_pass http://localhost:8000;
|
|
proxy_read_timeout 30m;
|
|
proxy_connect_timeout 30m;
|
|
}
|
|
}
|
|
} |