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 1
1
FROM public.ecr.aws/nginx/nginx:1.29.1
2
2
3
- COPY nginx.conf /etc/nginx/nginx .conf
3
+ COPY ./ nginx/default .conf.template /etc/nginx/templates/default .conf.template
4
4
COPY build/. /usr/share/nginx/html
5
5
6
+ ENV NGINX_PORT=8080
6
7
EXPOSE 8080
7
8
8
9
VOLUME /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 1
1
{
2
2
"name" : " compas-open-scd" ,
3
- "version" : " 0.41.0-4 " ,
3
+ "version" : " 0.41.0-5 " ,
4
4
"repository" : " https://github.com/openscd/open-scd.git" ,
5
5
"description" : " OpenSCD CoMPAS Edition" ,
6
6
"directory" : " packages/compas-open-scd" ,
You can’t perform that action at this time.
0 commit comments