ToolJet/cypress-tests/subpath.nginx
Ajith KV 108441c182
Add Cypress E2E testing workflow for all deployment types (#11647)
* 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
2024-12-19 16:33:06 +05:30

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;
}
}