This commit is contained in:
Collin M. Barrett 2019-04-28 16:11:57 -05:00
parent 0b33305fdf
commit fc4f52b2da
4 changed files with 2 additions and 3 deletions

View file

@ -11,7 +11,6 @@ codecov.yml
docker-compose.yml
docker-compose.*.yml
*.DotSettings*
FilterLists.postman_collection.json
LICENSE
**/bin
**/obj

View file

@ -9,7 +9,7 @@ services:
networks:
- reverse-proxy
volumes:
- ./ops/nginx/dev/conf.d:/etc/nginx/conf.d:ro
- ./ops/nginx/conf.d:/etc/nginx/conf.d:ro
filterlists-api:
image: collinbarrett/filterlists.api

View file

@ -1,5 +1,5 @@
server {
listen 80;
listen 80 default_server;
location ^~ /api {
rewrite ^/api/(.*)$ /$1 break;