https://gist.github.com/jjsquady/5399d6e1b23f501083a9c262d806e248 (opens in a new tab)
這個部署 Next.js 到自己的主機會用到。
LLM model stream problem
/etc/nginx/sites-available/default
# 解決stream mode卻一次吐一大段回來
server {
location / {
proxy_pass http://localhost:3000;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
proxy_buffering off;
proxy_request_buffering off;
chunked_transfer_encoding on;
}
}
# install
sudo apt-get update
sudo apt-get install nginx letsencrypt
# Firewall
sudo ufw allow 'Nginx Full'
# config file location
sudo vim /etc/nginx/sites-available/default
# basic
sudo nginx -t # check syntax errors first
sudo systemctl restart nginx
SSL
# letsencrypt
sudo letsencrypt certonly -a webroot --webroot-path=/var/www/html -d example.com -d www.example.com
# Generate key
sudo openssl dhparam -out /etc/ssl/certs/dhparam.pem 2048
sudo vim /etc/nginx/snippets/ssl-params.conf
# renew
sudo certbot renew
# list all
sudo certbot certificates
# delete
sudo certbot delete --cert-name example.com
# force with preferred-chain
# 弱掃會抱怨根X3過期
certbot --force-renewal --preferred-chain "ISRG Root X1" renew
ssl-params.conf
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;
ssl_ciphers "EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH";
ssl_ecdh_curve secp384r1;
ssl_session_cache shared:SSL:10m;
ssl_session_tickets off;
ssl_stapling on;
ssl_stapling_verify on;
resolver 8.8.8.8 8.8.4.4 valid=300s;
resolver_timeout 5s;
add_header Strict-Transport-Security "max-age=63072000; includeSubdomains";
add_header X-Frame-Options DENY;
add_header X-Content-Type-Options nosniff;
ssl_dhparam /etc/ssl/certs/dhparam.pem;
Config
/etc/nginx/nginx.conf
# 檔案上傳大小限制
# 沒設定預設只有1MB
http {
client_max_body_size 10M;
}
/etc/nginx/sites-available/default
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name .example.com;
location /.well-known/acme-challenge {
root /var/www/html;
}
location / {
return 301 https://$host$request_uri;
}
}
server {
listen 443 ssl http2 default_server;
listen [::]:443 ssl http2 default_server;
server_name xxx.example.com;
ssl_certificate /etc/letsencrypt/live/example.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/example.com/privkey.pem;
# include snippets/ssl-params.conf;
location / {
# reverse proxy for next server
# later we use pm2 to manage the starting of next server
proxy_pass http://localhost:3000;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
# 資安掃描用
add_header Strict-Transport-Security "max-age=31536000; includeSubDomains" always;
}
}
如果有想要特殊的 Header 內資訊,就要在上面 proxy 中設定傳進 Next Server。
比如說:
location / {
proxy_pass http://localhost:3000;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
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_cache_bypass $http_upgrade;
}
api.ts
export default async function handler(
req: NextApiRequest,
res: NextApiResponse,
) {
const query = req.query;
const ipAddress: any = req.headers["x-forwarded-for"]
? req.headers["x-forwarded-for"]
: "";
const { email, mailId, groupId, practiceId }: any = query;
const filePath = path.resolve(".", "public/return.png");
const imageBuffer = fs.readFileSync(filePath);
await prisma.click.create({
data: {
address: email,
mailId: parseInt(mailId),
groupId: parseInt(groupId),
practiceId: parseInt(practiceId),
action: 2,
ip: ipAddress,
},
});
res.setHeader("Cache-Control", "no-store");
res.setHeader("Content-Type", "image/png");
return res.send(imageBuffer);
}
Serve static file under directory
default
# /etc/nginx/sites-available/default
location /uploads/ {
alias /home/oukalatte/isms/public/records/;
}
# root vs alias
# 資料夾權限要注意 ex:
# 不然會遇到 403 Forbidden
# change ownership
# add user to group
sudo usermod -a -G group username
# change group onwership
sudo chown -R :groupname /home/xxx/yyy/public/zzz/
# or change /etc/nginx/nginx.conf
# user www-data;
# 改成執行擁有資料夾的那個user
macos
/opt/homebrew/etc/nginx/nginx.conf
# default setting路徑如上
# /opt/homebrew/etc/nginx/servers 底下的也會全吃
# 開發中處理cors問題
location /uploads/ {
alias /Users/xxx/xxx/js/xxx/uploadedFiles/;
# Allow CORS for all origins
add_header Access-Control-Allow-Origin * always;
# Allow common headers
add_header Access-Control-Allow-Headers "Authorization, Content-Type, Accept" always;
# Allow common methods
add_header Access-Control-Allow-Methods "GET, POST, OPTIONS, PUT, DELETE" always;
# Handle OPTIONS request (preflight)
if ($request_method = OPTIONS) {
add_header Access-Control-Allow-Origin * always;
add_header Access-Control-Allow-Headers "Authorization, Content-Type, Accept" always;
add_header Access-Control-Allow-Methods "GET, POST, OPTIONS, PUT, DELETE" always;
add_header Content-Length 0;
add_header Content-Type text/plain;
return 204; # No content
}
# Ensure CORS headers are applied for GET requests
if ($request_method = GET) {
add_header Access-Control-Allow-Origin * always;
add_header Access-Control-Allow-Headers "Authorization, Content-Type, Accept" always;
add_header Access-Control-Allow-Methods "GET, POST, OPTIONS, PUT, DELETE" always;
}
}