mirror of https://github.com/lukechilds/umbrel.git
Lounès Ksouri
3 years ago
committed by
GitHub
15 changed files with 97 additions and 50 deletions
@ -1,10 +1,11 @@ |
|||
[mysqld] |
|||
sql_mode="NO_ENGINE_SUBSTITUTION" |
|||
transaction_isolation=READ-COMMITTED |
|||
performance_schema=off |
|||
innodb_buffer_pool_size=128M |
|||
innodb_buffer_pool_chunk_size=16M |
|||
key_buffer_size=8M |
|||
tmp_table_size=1M |
|||
max_connections=20 |
|||
max_connections=80 |
|||
sort_buffer_size=1M |
|||
query_cache_size=8M |
|||
|
@ -0,0 +1,22 @@ |
|||
# Connect UI Configuration |
|||
server { |
|||
listen 8081; |
|||
server_name _; |
|||
|
|||
root /var/www/connect; |
|||
index index.html; |
|||
|
|||
# Proxy pairing endpoint to dojo api |
|||
location /v2/support/pairing { |
|||
proxy_pass http://node:8080/support/pairing; |
|||
} |
|||
|
|||
location /test/v2/support/pairing { |
|||
proxy_pass http://node:8080/support/pairing; |
|||
} |
|||
|
|||
# Server Connect UI static files |
|||
location / { |
|||
try_files $uri $uri/ =404; |
|||
} |
|||
} |
@ -1,5 +1,7 @@ |
|||
var dojoLocalPort = "$DOJO_LOCAL_PORT"; |
|||
var dojoHiddenService = "$DOJO_HIDDEN_SERVICE"; |
|||
var whirlpoolHiddenService = "http://$WHIRLPOOL_HIDDEN_SERVICE"; |
|||
var whirlpoolHiddenService = "$WHIRLPOOL_HIDDEN_SERVICE"; |
|||
var bitcoinNetwork = "$COMMON_BTC_NETWORK"; |
|||
var dojoAdminKey = "$NODE_ADMIN_KEY"; |
|||
var supportPrefix = "$NODE_PREFIX_SUPPORT"; |
|||
var whirlpoolApiKey = "$WHIRLPOOL_API_KEY"; |
|||
var dojoSupportPrefix = "$NODE_PREFIX_SUPPORT"; |
|||
|
Loading…
Reference in new issue