* Display Connection State in Setting page * memoize callback * rendering and confirmaton * setState API * Input validation * remove JSON step * rename apiMethod to `updateState` * test and adjust route * skip if sync is running * prevent state update when sync is running * code editor component * errors fixed * scss style * make linter happy * Back to monaco editor * Remove ability to edit state * Adjust FE code * Fix CSS problem * Update airbyte-webapp/src/locales/en.json Co-authored-by: Edmundo Ruiz Ghanem <168664+edmundito@users.noreply.github.com> * just use PRE to render state for now Co-authored-by: Tim Roes <tim@airbyte.io> Co-authored-by: Edmundo Ruiz Ghanem <168664+edmundito@users.noreply.github.com>
46 lines
1.2 KiB
Plaintext
46 lines
1.2 KiB
Plaintext
upstream api-server {
|
|
server $INTERNAL_API_HOST;
|
|
}
|
|
|
|
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
server_name localhost;
|
|
|
|
#charset koi8-r;
|
|
#access_log /var/log/nginx/host.access.log main;
|
|
|
|
add_header Content-Security-Policy "script-src * 'unsafe-inline'; worker-src self blob:;";
|
|
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
try_files $uri $uri/ /index.html;
|
|
|
|
sub_filter </head>
|
|
'</head><script language="javascript"\>
|
|
window.TRACKING_STRATEGY = "$TRACKING_STRATEGY";
|
|
window.FULLSTORY = "$FULLSTORY";
|
|
window.AIRBYTE_VERSION = "$AIRBYTE_VERSION";
|
|
window.API_URL = "$API_URL";
|
|
window.IS_DEMO = "$IS_DEMO";
|
|
</script>';
|
|
sub_filter_once on;
|
|
}
|
|
|
|
#error_page 404 /404.html;
|
|
|
|
# redirect server error pages to the static page /50x.html
|
|
#
|
|
error_page 500 502 503 504 /50x.html;
|
|
location = /50x.html {
|
|
root /usr/share/nginx/html;
|
|
}
|
|
|
|
location /api/ {
|
|
fastcgi_read_timeout 1h;
|
|
proxy_read_timeout 1h;
|
|
client_max_body_size 200M;
|
|
proxy_pass http://api-server/api/;
|
|
}
|
|
}
|