-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathreverse_proxy.sh
More file actions
82 lines (62 loc) · 1.98 KB
/
reverse_proxy.sh
File metadata and controls
82 lines (62 loc) · 1.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#!/bin/bash
set -e
DOMAIN="transcript42.project-cloud.cloud"
PORT=8000
echo "Updating packages and installing nginx, certbot..."
sudo apt update
sudo apt install -y nginx certbot python3-certbot-nginx
echo "Creating temporary Nginx config (HTTP only) for Certbot validation..."
sudo tee /etc/nginx/sites-available/$DOMAIN > /dev/null << EOF
server {
listen 80;
server_name $DOMAIN;
location /.well-known/acme-challenge/ {
root /var/www/certbot;
}
location / {
return 301 http://\$host\$request_uri;
}
}
EOF
sudo ln -sf /etc/nginx/sites-available/$DOMAIN /etc/nginx/sites-enabled/
sudo mkdir -p /var/www/certbot
echo "Testing Nginx configuration..."
sudo nginx -t
echo "Reloading Nginx..."
sudo systemctl reload nginx
echo "Obtaining SSL certificate with Certbot..."
sudo certbot certonly --webroot -w /var/www/certbot -d $DOMAIN --non-interactive --agree-tos -m jubernar@student.42berlin.de
echo "Creating full HTTPS Nginx config..."
sudo tee /etc/nginx/sites-available/$DOMAIN > /dev/null << EOF
server {
listen 80;
server_name $DOMAIN;
location /.well-known/acme-challenge/ {
root /var/www/certbot;
}
# Redirect all other requests to HTTPS
location / {
return 301 https://\$host\$request_uri;
}
}
server {
listen 443 ssl;
server_name $DOMAIN;
ssl_certificate /etc/letsencrypt/live/$DOMAIN/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/$DOMAIN/privkey.pem;
ssl_protocols TLSv1.2 TLSv1.3;
ssl_prefer_server_ciphers on;
location / {
proxy_pass http://127.0.0.1:$PORT;
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;
}
}
EOF
echo "Reloading Nginx with HTTPS config..."
sudo nginx -t
sudo systemctl reload nginx
echo "Setup complete."
echo "Make sure your Gunicorn app is running and listening on 127.0.0.1:$PORT"