23 lines
594 B
Caddyfile
23 lines
594 B
Caddyfile
# SPDX-FileCopyrightText: 2023 Marlon W (Mawoka)
|
|
#
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
#* {
|
|
:8080 {
|
|
# tls /home/mawoka/certs/cert.pem /home/mawoka/certs/key.pem
|
|
reverse_proxy /* localhost:3000
|
|
reverse_proxy /api* localhost:8000
|
|
reverse_proxy /rapidoc* localhost:8000
|
|
reverse_proxy /openapi.json localhost:8000
|
|
reverse_proxy /socket.io* localhost:8000
|
|
}
|
|
|
|
192.168.100.127:8081 {
|
|
tls internal
|
|
reverse_proxy /* localhost:3000
|
|
reverse_proxy /api* localhost:8000
|
|
reverse_proxy /rapidoc* localhost:8000
|
|
reverse_proxy /openapi.json localhost:8000
|
|
reverse_proxy /socket.io* localhost:8000
|
|
}
|