Add the id endpoint to our IPFS reverse proxy

This commit is contained in:
Greg Karékinian
2019-04-18 11:00:22 +02:00
parent 45c764c83e
commit 94cb7c8e20
2 changed files with 4 additions and 1 deletions

View File

@@ -33,6 +33,9 @@ server {
location /api/v0/object/data {
proxy_pass http://_ipfs/api/v0/object/data;
}
location /api/v0/id {
proxy_pass http://_ipfs/api/v0/id;
}
ssl_certificate <%= @ssl_cert %>;
ssl_certificate_key <%= @ssl_key %>;