feat: Add deployment to a staging environment
This commit is contained in:
parent
d2a29e8dec
commit
54988257e6
4 changed files with 161 additions and 13 deletions
99
deploy.sh
99
deploy.sh
|
|
@ -1,15 +1,92 @@
|
|||
#!/usr/bin/env sh
|
||||
|
||||
sudo cp -rt /srv/www/binning.net \
|
||||
blog \
|
||||
includes \
|
||||
index.html \
|
||||
blog.html \
|
||||
resume.html \
|
||||
style.css \
|
||||
404.html
|
||||
set -e
|
||||
|
||||
sudo chown -R nginx:nginx /srv/www/binning.net/
|
||||
# Usage information
|
||||
usage() {
|
||||
printf "Usage: %s [staging|prod]\n\n staging - Deploy to local staging environment (/srv/www/stage.binning.net)\n prod - Deploy to production server via SSH (www.binning.net)\n\nExample:\n %s staging\n %s prod\n" "$0" "$0" "$0"
|
||||
exit 1
|
||||
}
|
||||
|
||||
sudo cp -t /etc/nixos/ \
|
||||
nginx.nix
|
||||
# Check if argument provided
|
||||
if [ $# -eq 0 ]; then
|
||||
printf "Error: No environment specified\n"
|
||||
usage
|
||||
fi
|
||||
|
||||
ENV=$1
|
||||
|
||||
case $ENV in
|
||||
staging)
|
||||
printf "Deploying to STAGING environment...\n"
|
||||
|
||||
STAGING_PATH="/srv/www/stage.binning.net"
|
||||
|
||||
# Create staging directory if it doesn't exist
|
||||
sudo mkdir -p ${STAGING_PATH}
|
||||
|
||||
# Deploy website files via rsync
|
||||
printf "Deploying website files...\n"
|
||||
sudo rsync -av --delete \
|
||||
blog \
|
||||
includes \
|
||||
index.html \
|
||||
blog.html \
|
||||
resume.html \
|
||||
style.css \
|
||||
404.html \
|
||||
${STAGING_PATH}/
|
||||
|
||||
# Set proper ownership
|
||||
sudo chown -R nginx:nginx ${STAGING_PATH}/
|
||||
|
||||
# Copy nginx config
|
||||
sudo cp -t /etc/nixos/ staging.nginx.nix
|
||||
|
||||
printf "✓ Staging deployment complete!\n Files deployed to: %s\n Nginx config: /etc/nixos/staging.nginx.nix\n\nTo activate, update your NixOS configuration to import staging.nginx.nix\nand run: sudo nixos-rebuild switch\n" "${STAGING_PATH}"
|
||||
;;
|
||||
|
||||
prod)
|
||||
printf "Deploying to PRODUCTION environment...\n"
|
||||
|
||||
# SSH details
|
||||
REMOTE_HOST="binning.net"
|
||||
REMOTE_USER="matthew.binning"
|
||||
REMOTE_PATH="/srv/www/binning.net"
|
||||
REMOTE_NIXOS="/etc/nixos/"
|
||||
|
||||
# Check if SSH key is set up
|
||||
if ! ssh -o BatchMode=yes -o ConnectTimeout=5 ${REMOTE_USER}@${REMOTE_HOST} exit 2>/dev/null; then
|
||||
printf "Warning: SSH connection test failed. Ensure SSH keys are configured.\nYou may be prompted for a password.\n"
|
||||
fi
|
||||
|
||||
# Deploy website files via rsync over SSH
|
||||
printf "Deploying website files...\n"
|
||||
rsync -avz --delete \
|
||||
-e ssh \
|
||||
blog \
|
||||
includes \
|
||||
index.html \
|
||||
blog.html \
|
||||
resume.html \
|
||||
style.css \
|
||||
404.html \
|
||||
${REMOTE_USER}@${REMOTE_HOST}:${REMOTE_PATH}/
|
||||
|
||||
# Deploy nginx configuration
|
||||
printf "Deploying nginx configuration...\n"
|
||||
scp prod.nginx.nix ${REMOTE_USER}@${REMOTE_HOST}:/tmp/nginx.nix
|
||||
|
||||
# Set proper permissions and move config on remote server
|
||||
ssh ${REMOTE_USER}@${REMOTE_HOST} "sudo mv /tmp/nginx.nix ${REMOTE_NIXOS}nginx.nix && \
|
||||
sudo chown -R nginx:nginx ${REMOTE_PATH}/ && \
|
||||
printf 'Configuration deployed. Run sudo nixos-rebuild switch to activate.\n'"
|
||||
|
||||
printf "✓ Production deployment complete!\n\nSSH into %s and run: sudo nixos-rebuild switch\n" "${REMOTE_HOST}"
|
||||
;;
|
||||
|
||||
*)
|
||||
printf "Error: Invalid environment '%s'\n" "$ENV"
|
||||
usage
|
||||
;;
|
||||
esac
|
||||
|
|
|
|||
|
|
@ -59,6 +59,17 @@ in
|
|||
'';
|
||||
};
|
||||
|
||||
# Private blog articles with HTTP basic authentication
|
||||
locations."/blog/private/" = {
|
||||
extraConfig = ''
|
||||
auth_basic "Private Articles";
|
||||
auth_basic_user_file /srv/nginx/.htpasswd;
|
||||
|
||||
# Enable Server Side Includes
|
||||
ssi on;
|
||||
'';
|
||||
};
|
||||
|
||||
# Optional: Custom 404 page
|
||||
extraConfig = ''
|
||||
error_page 404 /404.html;
|
||||
56
staging.nginx.nix
Normal file
56
staging.nginx.nix
Normal file
|
|
@ -0,0 +1,56 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
|
||||
{
|
||||
services.nginx = {
|
||||
enable = true;
|
||||
|
||||
# Recommended settings
|
||||
recommendedGzipSettings = true;
|
||||
recommendedOptimisation = true;
|
||||
recommendedProxySettings = true;
|
||||
|
||||
# Virtual hosts configuration for local staging
|
||||
virtualHosts = {
|
||||
|
||||
# Main website - Static HTML/CSS
|
||||
# Access via http://localhost or http://localhost:80
|
||||
"localhost" = {
|
||||
# No SSL for local development
|
||||
listen = [
|
||||
{ addr = "127.0.0.1"; port = 80; }
|
||||
{ addr = "0.0.0.0"; port = 80; }
|
||||
];
|
||||
|
||||
root = "/srv/www/stage.binning.net";
|
||||
|
||||
locations."/" = {
|
||||
index = "index.html";
|
||||
tryFiles = "$uri $uri/ =404";
|
||||
extraConfig = ''
|
||||
# Enable Server Side Includes for navbar/footer includes
|
||||
ssi on;
|
||||
'';
|
||||
};
|
||||
|
||||
# Private blog articles with HTTP basic authentication
|
||||
locations."/blog/private/" = {
|
||||
extraConfig = ''
|
||||
auth_basic "Private Articles";
|
||||
auth_basic_user_file /srv/nginx/.htpasswd;
|
||||
|
||||
# Enable Server Side Includes
|
||||
ssi on;
|
||||
'';
|
||||
};
|
||||
|
||||
# Custom 404 page
|
||||
extraConfig = ''
|
||||
error_page 404 /404.html;
|
||||
'';
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
# Firewall - allow local HTTP access
|
||||
networking.firewall.allowedTCPPorts = [ 80 ];
|
||||
}
|
||||
8
todo.txt
8
todo.txt
|
|
@ -1,4 +1,5 @@
|
|||
(F) Add user authentication to view private articles (either HTTP basic authentication or something else)
|
||||
(A) Re-use code or code blocks where possible between staging.nginx.nix and prod.nginx.nix
|
||||
(B) Re-use code or code blocks where possible between deploy.sh staging and deploy.sh prod
|
||||
DefCon article
|
||||
Oktoberfest article
|
||||
health journey
|
||||
|
|
@ -13,4 +14,7 @@ x Add a blog page with links to blog entry pages.
|
|||
x Add the blog page to the navbar.
|
||||
x Create example blog sections
|
||||
x Add an example resume page linked from the main navbar
|
||||
x Possibly use some include mechanism in HTML to separate the navbar to its own html file.
|
||||
x Possibly use some include mechanism in HTML to separate the navbar to its own html file.
|
||||
x Create a staging.nginx.nix based on prod.nginx.nix which sets up nginx as a local server.
|
||||
x Update the deploy.sh script to deploy to either staging or prod over SSH to binning.net.
|
||||
x Add user authentication to view private articles (either HTTP basic authentication or something else)
|
||||
Loading…
Add table
Add a link
Reference in a new issue