Skip to content

Commit

Permalink
Merge pull request #8 from ITLab-CC/migrate-to-full-tdd
Browse files Browse the repository at this point in the history
Expose docs via proxy
  • Loading branch information
skyface753 authored Jan 31, 2024
2 parents 5cf02e3 + 24395bb commit 57e01e8
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions proxy/nginx-proxy.conf
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ server {
location /api/ {
proxy_pass http://server:8000;
}
location /docs {
proxy_pass http://server:8000;
}
location /openapi.json {
proxy_pass http://server:8000;
}

error_page 500 502 503 504 /50x.html;
location = /50x.html {
Expand Down

0 comments on commit 57e01e8

Please sign in to comment.