12 lines
299 B
Plaintext
12 lines
299 B
Plaintext
# SPDX-FileCopyrightText: 2023 Marlon W (Mawoka)
|
|
#
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
:8080 {
|
|
reverse_proxy * http://frontend:3000
|
|
reverse_proxy /api/* http://api:80
|
|
reverse_proxy /openapi.json http://api:80 # Only use if you need to serve the OpenAPI spec
|
|
reverse_proxy /socket.io/* api:80
|
|
|
|
}
|