File tree Expand file tree Collapse file tree 4 files changed +18
-23
lines changed Expand file tree Collapse file tree 4 files changed +18
-23
lines changed Original file line number Diff line number Diff line change 11FROM public.ecr.aws/nginx/nginx:1.29.1
22
3- COPY nginx.conf /etc/nginx/nginx .conf
3+ COPY ./ nginx/default .conf.template /etc/nginx/templates/default .conf.template
44COPY build/. /usr/share/nginx/html
55
6+ ENV NGINX_PORT=8080
67EXPOSE 8080
78
89VOLUME /etc/nginx/
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ server {
2+ listen ${NGINX_PORT};
3+ listen [::]:${NGINX_PORT};
4+ server_name localhost;
5+
6+ location / {
7+ root /usr/share/nginx/html;
8+ index index.html index.htm;
9+ }
10+
11+ error_page 500 502 503 504 /50x.html;
12+ location = /50x.html {
13+ root /usr/share/nginx/html;
14+ }
15+ }
Original file line number Diff line number Diff line change 11{
22 "name" : " compas-open-scd" ,
3- "version" : " 0.41.0-4 " ,
3+ "version" : " 0.41.0-5 " ,
44 "repository" : " https://github.com/openscd/open-scd.git" ,
55 "description" : " OpenSCD CoMPAS Edition" ,
66 "directory" : " packages/compas-open-scd" ,
You can’t perform that action at this time.
0 commit comments