trying a new automation tool 2

This commit is contained in:
2025-10-09 21:57:48 -05:00
parent 7df7b0b0b2
commit ac4d58a7d5
2 changed files with 51 additions and 0 deletions

View File

@@ -20,6 +20,7 @@ RUN apk add --no-cache nginx git zola bash
COPY --from=builder /site /site
COPY --from=builder /site/src/public /usr/share/nginx/html
COPY --from=builder /site/webhook.py /usr/local/bin/webhook.py
COPY nginx.conf /etc/nginx/nginx.conf
ENV DEPLOY_SECRET="supersecret"
WORKDIR /site/src

50
nginx.conf Normal file
View File

@@ -0,0 +1,50 @@
user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
gzip on;
gzip_vary on;
gzip_proxied any;
gzip_comp_level 6;
gzip_types text/plain text/css text/xml text/javascript application/json application/javascript application/xml+rss application/rss+xml font/truetype font/opentype application/vnd.ms-fontobject image/svg+xml;
server {
listen 80;
listen [::]:80;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ =404;
}
# Cache static assets
location ~* \.(jpg|jpeg|png|gif|ico|css|js|svg|woff|woff2|ttf|eot)$ {
expires 1y;
add_header Cache-Control "public, immutable";
}
}
}