sepolia deployment

This commit is contained in:
tim
2025-10-23 13:53:48 -04:00
parent 380c77b37e
commit a1e73df30a
13 changed files with 524 additions and 55 deletions

23
deploy/nginx.conf Normal file
View File

@@ -0,0 +1,23 @@
server {
listen 80 default_server;
root /liquidity.party/web/out;
gzip on;
gzip_min_length 1000;
gzip_types text/plain text/xml application/javascript text/css;
location / {
try_files $uri $uri.html $uri/ /index.html;
}
# This is necessary when `trailingSlash: false`.
# You can omit this when `trailingSlash: true`.
location /blog/ {
rewrite ^/blog/(.*)$ /blog/$1.html break;
}
error_page 404 /404.html;
location = /404.html {
internal;
}
}