Fix cloud-init: escape heredoc vars, add contact-api snippet, fix CORS
- Escape $uri/$host in heredocs so nginx sees them, not bash - Rename heredoc markers (NGINXEOF, PROXYEOF, SVCEOF) to avoid conflicts - Add contact-api nginx snippet WITHOUT proxy_set_header Origin (CORS fix) - Fix contact-api clone URL to Forgejo - Simplify .env template
This commit is contained in:
parent
8306229dc1
commit
9f7aa97f4e
1 changed files with 36 additions and 25 deletions
|
|
@ -26,7 +26,7 @@ mkdir -p /var/www/${project_name}/js
|
||||||
DOMAIN=${domain}
|
DOMAIN=${domain}
|
||||||
|
|
||||||
# Set up nginx configuration
|
# Set up nginx configuration
|
||||||
cat << 'EOF' > /etc/nginx/sites-available/${project_name}
|
cat > /etc/nginx/sites-available/${project_name} << NGINXEOF
|
||||||
server {
|
server {
|
||||||
root /var/www/${project_name};
|
root /var/www/${project_name};
|
||||||
index index.html;
|
index index.html;
|
||||||
|
|
@ -36,11 +36,11 @@ server {
|
||||||
add_header Cache-Control "no-cache, no-store, must-revalidate";
|
add_header Cache-Control "no-cache, no-store, must-revalidate";
|
||||||
add_header Pragma "no-cache";
|
add_header Pragma "no-cache";
|
||||||
add_header Expires "0";
|
add_header Expires "0";
|
||||||
try_files $uri $uri/ =404;
|
try_files \$uri \$uri/ =404;
|
||||||
}
|
}
|
||||||
|
|
||||||
location / {
|
location / {
|
||||||
try_files $uri $uri/ =404;
|
try_files \$uri \$uri/ =404;
|
||||||
}
|
}
|
||||||
|
|
||||||
add_header X-Frame-Options "SAMEORIGIN" always;
|
add_header X-Frame-Options "SAMEORIGIN" always;
|
||||||
|
|
@ -60,9 +60,9 @@ server {
|
||||||
listen 80;
|
listen 80;
|
||||||
listen [::]:80;
|
listen [::]:80;
|
||||||
server_name ${domain} www.${domain};
|
server_name ${domain} www.${domain};
|
||||||
return 301 https://$host$request_uri;
|
return 301 https://\$host\$request_uri;
|
||||||
}
|
}
|
||||||
EOF
|
NGINXEOF
|
||||||
|
|
||||||
# Symlink nginx config
|
# Symlink nginx config
|
||||||
ln -sf /etc/nginx/sites-available/${project_name} /etc/nginx/sites-enabled/${project_name}
|
ln -sf /etc/nginx/sites-available/${project_name} /etc/nginx/sites-enabled/${project_name}
|
||||||
|
|
@ -70,8 +70,29 @@ ln -sf /etc/nginx/sites-available/${project_name} /etc/nginx/sites-enabled/${pro
|
||||||
# Remove default nginx site
|
# Remove default nginx site
|
||||||
rm -f /etc/nginx/sites-enabled/default
|
rm -f /etc/nginx/sites-enabled/default
|
||||||
|
|
||||||
|
# Set up nginx snippet for contact-api proxy (NO proxy_set_header Origin — breaks CORS)
|
||||||
|
cat > /etc/nginx/snippets/contact-api.conf << 'PROXYEOF'
|
||||||
|
location /api/contact {
|
||||||
|
proxy_pass http://127.0.0.1:3001;
|
||||||
|
proxy_http_version 1.1;
|
||||||
|
proxy_set_header Host \$host;
|
||||||
|
proxy_set_header X-Real-IP \$remote_addr;
|
||||||
|
proxy_set_header X-Forwarded-For \$proxy_add_x_forwarded_for;
|
||||||
|
proxy_set_header X-Forwarded-Proto \$scheme;
|
||||||
|
}
|
||||||
|
|
||||||
|
location /api/health {
|
||||||
|
proxy_pass http://127.0.0.1:3001;
|
||||||
|
proxy_http_version 1.1;
|
||||||
|
proxy_set_header Host \$host;
|
||||||
|
}
|
||||||
|
PROXYEOF
|
||||||
|
|
||||||
|
# Include the snippet in the main server block
|
||||||
|
sed -i '/location \/ {/i\ include /etc/nginx/snippets/contact-api.conf;' /etc/nginx/sites-available/${project_name}
|
||||||
|
|
||||||
# Set up contact-api service
|
# Set up contact-api service
|
||||||
cat << 'EOF' > /etc/systemd/system/contact-api.service
|
cat > /etc/systemd/system/contact-api.service << 'SVCEOF'
|
||||||
[Unit]
|
[Unit]
|
||||||
Description=Contact Form API - Email Backend
|
Description=Contact Form API - Email Backend
|
||||||
After=network.target
|
After=network.target
|
||||||
|
|
@ -85,24 +106,21 @@ ExecStart=/usr/bin/node src/index.js
|
||||||
Restart=on-failure
|
Restart=on-failure
|
||||||
RestartSec=10
|
RestartSec=10
|
||||||
|
|
||||||
# Environment
|
|
||||||
EnvironmentFile=/opt/contact-api/.env
|
EnvironmentFile=/opt/contact-api/.env
|
||||||
|
|
||||||
# Security
|
|
||||||
NoNewPrivileges=true
|
NoNewPrivileges=true
|
||||||
PrivateTmp=true
|
PrivateTmp=true
|
||||||
ProtectSystem=strict
|
ProtectSystem=strict
|
||||||
ProtectHome=true
|
ProtectHome=true
|
||||||
ReadWritePaths=/opt/contact-api
|
ReadWritePaths=/opt/contact-api
|
||||||
|
|
||||||
# Logging
|
|
||||||
StandardOutput=journal
|
StandardOutput=journal
|
||||||
StandardError=journal
|
StandardError=journal
|
||||||
SyslogIdentifier=contact-api
|
SyslogIdentifier=contact-api
|
||||||
|
|
||||||
[Install]
|
[Install]
|
||||||
WantedBy=multi-user.target
|
WantedBy=multi-user.target
|
||||||
EOF
|
SVCEOF
|
||||||
|
|
||||||
# Start nginx
|
# Start nginx
|
||||||
systemctl restart nginx
|
systemctl restart nginx
|
||||||
|
|
@ -111,22 +129,15 @@ systemctl restart nginx
|
||||||
systemctl daemon-reload
|
systemctl daemon-reload
|
||||||
systemctl enable contact-api.service
|
systemctl enable contact-api.service
|
||||||
|
|
||||||
# Create .env file for contact-api
|
# Download contact-api source from Forgejo
|
||||||
cat << 'EOF' > /opt/contact-api/.env
|
|
||||||
PORT=3001
|
|
||||||
SMTP_HOST=smtp.example.com
|
|
||||||
SMTP_PORT=587
|
|
||||||
SMTP_USER=your-email@example.com
|
|
||||||
SMTP_PASS=your-password
|
|
||||||
FROM_EMAIL=noreply@krustyplanet.org
|
|
||||||
FROM_NAME=KrustyPlanet
|
|
||||||
EOF
|
|
||||||
|
|
||||||
# Download contact-api source
|
|
||||||
cd /opt/contact-api
|
cd /opt/contact-api
|
||||||
git clone https://codeberg.org/jez/contact-api.git .
|
git clone ssh://git@git.jezzahehn.com:2222/KrustyPlanet/contact-api.git .
|
||||||
# Or download from URL if git repo doesn't exist
|
chown -R www-data:www-data /opt/contact-api
|
||||||
# curl -L https://example.com/contact-api.tar.gz | tar -xzf -
|
|
||||||
|
# .env will be created manually or via secrets management
|
||||||
|
cat > /opt/contact-api/.env << 'ENVEOF'
|
||||||
|
CONTACT_API_PORT=3001
|
||||||
|
ENVEOF
|
||||||
|
|
||||||
# Install dependencies
|
# Install dependencies
|
||||||
npm install
|
npm install
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue