All checks were successful
Deploy n8ngo Landing Page / build-and-deploy (push) Successful in 3m54s
HTML/CSS estático com dark mode, seções hero, como funciona, features, comparação, free tier e pré-cadastro via Tally.so. Inclui Dockerfile (nginx:alpine na porta 8070) e pipeline Gitea para deploy automático em n8ngo.convert-it.online.
22 lines
432 B
Nginx Configuration File
22 lines
432 B
Nginx Configuration File
server {
|
|
listen 8070;
|
|
server_name _;
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
|
|
# Gzip
|
|
gzip on;
|
|
gzip_types text/html text/css application/javascript;
|
|
gzip_min_length 256;
|
|
|
|
# Cache estático
|
|
location ~* \.(css|js|png|jpg|svg|ico|woff2?)$ {
|
|
expires 30d;
|
|
add_header Cache-Control "public, immutable";
|
|
}
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
}
|