Skip to content

Commit

Permalink
format nginx conf; removed nginx installation in dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
proffapt committed Jul 2, 2024
1 parent 388bd1e commit 74e474b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RUN CGO_ENABLED=1 GOOS=linux go build -o ./build --tags "fts5" -a -ldflags '-lin

FROM alpine:latest AS app

RUN apk --no-cache add bash nginx ca-certificates tzdata
RUN apk --no-cache add ca-certificates tzdata bash

ENV TZ="Asia/Kolkata"

Expand Down
10 changes: 5 additions & 5 deletions metaploy/heimdall.metaploy.conf
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
upstream heimdall_server {
server heimdall:3333;
server heimdall:3333;
}

server {
server_name heimdall-api.metakgp.org;
server_name heimdall-api.metakgp.org;

location / {
proxy_pass http://heimdall_server;
}
location / {
proxy_pass http://heimdall_server;
}
}

0 comments on commit 74e474b

Please sign in to comment.