From 77832d8784f7917f9813fc18c4dd81008d33efd0 Mon Sep 17 00:00:00 2001 From: mo khan Date: Thu, 8 May 2025 12:45:05 -0600 Subject: chore: bind envoy to port 80 --- .runway/runway.yml | 2 +- Dockerfile | 2 +- envoy.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.runway/runway.yml b/.runway/runway.yml index a6f6515..9fda537 100644 --- a/.runway/runway.yml +++ b/.runway/runway.yml @@ -7,7 +7,7 @@ metadata: owner_email_handle: mkhan product_category: authorization spec: - container_port: 10000 + container_port: 80 deployment: strategy: "expedited" regions: diff --git a/Dockerfile b/Dockerfile index 55b6ded..ac1073b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ RUN make build && mv ./sparkled /bin/sparkled FROM envoyproxy/envoy:v1.33-latest ENV BIND_ADDR=":8080" -EXPOSE 8080 10000 9901 +EXPOSE 80 8080 10000 9901 WORKDIR /var/www/ COPY --from=build /bin/sparkled /usr/local/bin/sparkled COPY --from=build /app/public /var/www/public diff --git a/envoy.yml b/envoy.yml index 50618db..63b4543 100644 --- a/envoy.yml +++ b/envoy.yml @@ -7,7 +7,7 @@ static_resources: listeners: - name: listener_0 address: - socket_address: { address: 0.0.0.0, port_value: 10000 } + socket_address: { address: 0.0.0.0, port_value: 80 } filter_chains: - filters: - name: envoy.filters.network.http_connection_manager -- cgit v1.2.3