update
This commit is contained in:
parent
dabdcf0143
commit
5db5034765
@ -1,10 +1,10 @@
|
||||
FROM nginx:alpine
|
||||
LABEL maintainer="Jay <admin@trj.tw>"
|
||||
ARG PREFIX
|
||||
# ARG PREFIX
|
||||
RUN mkdir -p /data
|
||||
WORKDIR /data
|
||||
COPY dist/ /data
|
||||
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
||||
RUN sed -i 's@\$\$prefix\$\$@'${PREFIX}'@' /etc/nginx/conf.d/default.conf
|
||||
# RUN sed -i 's@\$\$prefix\$\$@'${PREFIX}'@' /etc/nginx/conf.d/default.conf
|
||||
EXPOSE 80
|
||||
CMD ["nginx", "-g", "daemon off;"]
|
@ -4,15 +4,12 @@ server {
|
||||
|
||||
#charset koi8-r;
|
||||
#access_log /var/log/nginx/host.access.log main;
|
||||
|
||||
port_in_redirect off;
|
||||
root /data;
|
||||
index index.html;
|
||||
|
||||
location ^~ $$prefix$$/ {
|
||||
location /web {
|
||||
alias /data/;
|
||||
}
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/ /index.html;
|
||||
}
|
||||
}
|
||||
|
@ -1,3 +1,3 @@
|
||||
module.exports = {
|
||||
baseUrl: process.env.BASE_URL || '/'
|
||||
baseUrl: process.env.BASE_URL || '/'
|
||||
}
|
Loading…
Reference in New Issue
Block a user