14 lines
346 B
Plaintext
14 lines
346 B
Plaintext
server {
|
|
server_name api.tx.local;
|
|
|
|
location / {
|
|
proxy_pass http://localhost:3000;
|
|
client_max_body_size 5M;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection 'upgrade';
|
|
proxy_set_header Host $host;
|
|
proxy_cache_bypass $http_upgrade;
|
|
}
|
|
|
|
} |