mirror of
https://github.com/SrIzan10/ohmyform.git
synced 2026-05-01 10:55:11 +00:00
17 lines
300 B
Plaintext
17 lines
300 B
Plaintext
|
|
server {
|
|
listen 80;
|
|
|
|
location / {
|
|
proxy_pass http://ui:5000;
|
|
proxy_redirect off;
|
|
proxy_set_header Host $host;
|
|
}
|
|
|
|
location /graphql {
|
|
proxy_pass http://api:5000;
|
|
proxy_redirect off;
|
|
proxy_set_header Host $host;
|
|
}
|
|
}
|