File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed
Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,8 @@ FROM common:${ALPINE_VERSION}-nginx AS base
2121# Copy configuration files
2222# - nginx
2323COPY config/nginx/http.d/ /etc/nginx/http.d/
24+ # - s6-overlay
25+ COPY config/s6-overlay /etc/s6-overlay/s6-rc.d/
2426# - init
2527COPY scripts/ /scripts/
2628COPY --from=build /app/import-meta-env /usr/bin/import-meta-env
Original file line number Diff line number Diff line change 44 server_name _;
55
66 # Legacy, remove this when everything is migrated to 8080
7- listen 80;
8- listen [::]:80;
7+ listen 80 default_server ;
8+ listen [::]:80 default_server ;
99
1010 root /app/www;
1111 index index.html;
Original file line number Diff line number Diff line change 1+ #!/usr/bin/execlineb -P
2+
3+ # Note: this overrides the normal nginx runner, because we listen on port 80
4+ # Get rid of this after that legacy is cleaned up
5+ nginx
You can’t perform that action at this time.
0 commit comments