feat: Add remote.jkwoo.com NGINX conf.d SSL integration

This commit is contained in:
2026-07-26 20:19:15 +09:00
parent c11afbedd1
commit 32b28bd230
3 changed files with 81 additions and 3 deletions

27
nginx/install_nginx.sh Executable file
View File

@@ -0,0 +1,27 @@
#!/bin/bash
set -e
echo "=== Installing remote.jkwoo.com NGINX Configuration to /etc/nginx/conf.d/ ==="
SRC_CONF="/home/jkwoo/workspace/helios_remote/nginx/remote_jkwoo.conf"
DEST_CONF="/etc/nginx/conf.d/remote_jkwoo.conf"
if [ "$EUID" -ne 0 ]; then
echo "Running with sudo..."
sudo cp "$SRC_CONF" "$DEST_CONF"
echo "Testing NGINX configuration..."
sudo nginx -t
echo "Reloading NGINX..."
sudo systemctl reload nginx
else
cp "$SRC_CONF" "$DEST_CONF"
echo "Testing NGINX configuration..."
nginx -t
echo "Reloading NGINX..."
systemctl reload nginx
fi
echo "=========================================================="
echo "✅ remote.jkwoo.com NGINX configuration installed successfully!"
echo "👉 Domain URL: https://remote.jkwoo.com"
echo "=========================================================="

47
nginx/remote_jkwoo.conf Normal file
View File

@@ -0,0 +1,47 @@
server {
listen 80;
listen [::]:80;
server_name remote.jkwoo.com;
return 301 https://$host$request_uri;
}
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name remote.jkwoo.com;
ssl_certificate /etc/letsencrypt/live/jkwoo.com-0001/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/jkwoo.com-0001/privkey.pem;
ssl_protocols TLSv1.2 TLSv1.3;
ssl_prefer_server_ciphers on;
ssl_ciphers HIGH:!aNULL:!MD5;
client_max_body_size 500M;
proxy_read_timeout 3600s;
proxy_send_timeout 3600s;
proxy_connect_timeout 60s;
# HELIOS Webview Viewer GUI & Dashboard
location / {
proxy_pass http://127.0.0.1:8085;
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 https;
# WebSocket Secure (wss://) Upgrade Headers
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
# HELIOS Control Plane API Server
location /api/ {
proxy_pass http://127.0.0.1:3000/;
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 https;
}
}