diff --git a/config.env b/config.env index cf4dec5c..a6ba7aae 100644 --- a/config.env +++ b/config.env @@ -1,5 +1,6 @@ BN_WS_OPERATIONS_TIME_WINDOW=900 BN_WS_OPERATIONS_LIMIT=60 +BN_WS_APPS_OPERATIONS_LIMIT=500 # Update this port in web/brightid-nginx.conf and docker-compose.yml too BN_WS_PROFILE_SERVICE_PORT=3000 BN_ARANGO_PROTOCOL=http @@ -26,6 +27,7 @@ BN_UPDATER_IDCHAIN_WSS=wss://idchain.one/ws/ BN_UPDATER_SEED_GROUPS_WS_URL=wss://idchain.one/ws/ BN_ARANGO_EXTRA_OPTS= BN_DEVELOPMENT=false +BN_PEERS= # passwords BN_SEED= BN_WS_PRIVATE_KEY= diff --git a/docker-compose.yml b/docker-compose.yml index 70d4953c..e3c98704 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -82,6 +82,7 @@ services: image: nginx volumes: - ./web/brightid-nginx.conf:/etc/nginx/nginx.conf + - ./web/index.html:/var/www/html/index.html network_mode: host env_file: - config.env diff --git a/web/brightid-nginx.conf b/web/brightid-nginx.conf index 87efde80..c318e813 100644 --- a/web/brightid-nginx.conf +++ b/web/brightid-nginx.conf @@ -36,6 +36,8 @@ http { server { listen 80; + root /var/www/html/; + location /profile/ { client_max_body_size 100k; proxy_pass http://127.0.0.1:3000/;