citadel-core/templates/nginx-sample.conf
Aaron Dewes 4b8c42bedd
Citadel 0.0.2 (#17)
* Start working on Fulcrum support

* More work on fulcrum/electrs switching

* Some fixes

* Update FulcrumX

* Some fixes

* Some FulcrumX fixes

* Fixes for apps which use the host network

* More fixes for host mode apps

* Stop installed apps during update

* More work on service managment

* Update docker-compose

* Update FulcrumX

* Fix update channel script

* Update manager to 0.0.6

* add network settings for new UI (development)

* set DEVICE_HOSTNAME env var

* clean up println statements

* build: don't run manager & middleware as root

* build: update core images

* Update some containers

* Improve app manager wrapper script

* Fix stop script

* Add WIP release notes for 0.0.2

* More improvements to the app CLI

* More information for c-lightning users

* Update dashboard to 0.0.9

* Start cleaning the ports list

* More cleanups to the reserved ports list

* fix: update lightning container name

* Update manager

Co-authored-by: Philipp Walter <philippwalter@pm.me>
2022-03-20 09:02:30 +01:00

54 lines
961 B
Plaintext

# SPDX-FileCopyrightText: 2020 Umbrel. https://getumbrel.com
# SPDX-FileCopyrightText: 2021-2022 Citadel and contributors
#
# SPDX-License-Identifier: GPL-3.0-or-later
user nginx;
worker_processes 1;
error_log /dev/stdout info;
events {
worker_connections 1024;
}
http {
access_log /dev/stdout;
proxy_read_timeout 600;
default_type application/octet-stream;
server {
listen 80;
location /api/ {
proxy_pass http://<middleware-ip>:3005/;
}
location /manager-api/ {
proxy_pass http://<manager-ip>:3006/;
}
# dashboard (old)
location / {
proxy_pass http://<dashboard-ip>:3004/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
}
server {
listen 8000;
# dashboard (new)
location / {
proxy_pass http://<dashboard-new-ip>:3010/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
}
}