yea, however if you have `location /` declared before that then anything coming in for `/api/v0` will match the `location /` declaration. Looking at your config it doesn't look like you need that fine grained control. You can probably get away with something like this: ``` upstream ipfs { server 127.0.0.1:5001; } server { server_name ipfs.piejacker.net; location / { proxy_pass http://warp; } listen [::]:443 ssl; # managed by Certbot listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/ipfs.piejacker.net/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/ipfs.piejacker.net/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot } ```