File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11FROM nginx:1.27.0-alpine
22
33COPY nginx/mime.types /etc/nginx/mime.types
4+ COPY nginx/default.conf /etc/nginx/conf.d/default.conf
45COPY assets /usr/share/nginx/html
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ server {
2+ listen 80;
3+ server_name localhost;
4+
5+ location = /adr/ruleset.yaml {
6+ return 301 https://gitdocumentatie.logius.nl/publicatie/api/adr/2.1.0/media/linter.yaml;
7+ }
8+
9+ location = /adr/2.1/ruleset.yaml {
10+ return 301 https://gitdocumentatie.logius.nl/publicatie/api/adr/2.1.0/media/linter.yaml;
11+ }
12+
13+ location / {
14+ root /usr/share/nginx/html;
15+ index index.html index.htm;
16+ }
17+
18+ error_page 500 502 503 504 /50x.html;
19+ location = /50x.html {
20+ root /usr/share/nginx/html;
21+ }
22+ }
You can’t perform that action at this time.
0 commit comments