mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-21 13:37:28 +00:00
* configure workflow for multiple deployment scenarios * fix syntax error * Update workflow * Update workflow for normal flow * Update workflow for better readablity * Modify nginx config * Update workflow with seperate job * update workflow file * modify nginx configuration * update config file * Fix for masking * seed the nginx config * update config * update config * Update nginx config * update config * update config * Update cypress secrets * Seperate each jobs * update common setup step * Seperate each jobs * update config * Update config
12 lines
No EOL
332 B
Nginx Configuration File
12 lines
No EOL
332 B
Nginx Configuration File
server {
|
|
listen 4001;
|
|
server_name localhost;
|
|
|
|
location / {
|
|
proxy_pass http://localhost:3000/;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
}
|
|
} |