File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,6 @@ RUN mkdir -p /etc/nginx/includes
1111
1212COPY --from=builder jira-to-github-redirects.conf /etc/nginx/includes/jira-to-github-redirects.conf
1313
14- COPY docker/favicon.ico /usr/share/nginx/html /favicon.ico
14+ COPY docker/favicon.ico /htdocs /favicon.ico
1515COPY docker/default.conf /etc/nginx/conf.d/default.conf
16- COPY docker/index.html /usr/share/nginx/html /index.html
16+ COPY docker/index.html /htdocs /index.html
Original file line number Diff line number Diff line change @@ -5,4 +5,4 @@ services:
55 ports :
66 - " 8060:80"
77 volumes :
8- - " ./docker/index.html:/usr/share/nginx/html /index.html"
8+ - " ./docker/index.html:/htdocs /index.html"
Original file line number Diff line number Diff line change 22 listen 80;
33 server_name _ localhost;
44
5- root /usr/share/nginx/html ;
5+ root /htdocs ;
66
77 include includes/jira-to-github-redirects.conf;
88 rewrite ^/issue/(.+) https://issues.jenkins.io/browse/JENKINS-$1 permanent;
You can’t perform that action at this time.
0 commit comments