server { server_name ipfs.kretschmann.io; # managed by Certbot root /var/www/html; index index.html index.htm index.nginx-debian.html; proxy_pass_header Server; proxy_read_timeout 1800s; location ~ "^/(ipfs|ipns)(/|\$)" { proxy_pass http://localhost:8080; proxy_set_header Host $host; proxy_set_header X-Ipfs-Gateway-Prefix ""; proxy_cache_bypass $http_upgrade; } location ~ "^/api/v0/(add|version|id|ls)" { proxy_pass http://localhost:5001; proxy_set_header Host $host; proxy_cache_bypass $http_upgrade; } location / { proxy_set_header host ipfs.vercel.app; proxy_ssl_server_name on; proxy_pass https://alias.zeit.co; } listen [::]:443 ssl ipv6only=on; # managed by Certbot listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/ipfs.kretschmann.io/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/ipfs.kretschmann.io/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 } server { if ($host = ipfs.kretschmann.io) { return 301 https://$host$request_uri; } # managed by Certbot listen 80 ; listen [::]:80 ; server_name ipfs.kretschmann.io; return 404; # managed by Certbot }