generated from nhcarrigan/template
e8318215a9
- Rewrote README with full directory structure, add/remove site workflows, deploy instructions, and a test suite reference table - Added a one-line header comment to each sites-available/*.conf explaining what category of sites belongs in that file
14 lines
353 B
Plaintext
14 lines
353 B
Plaintext
# Data service proxy.
|
|
server {
|
|
listen 443 ssl;
|
|
server_name data.nhcarrigan.com;
|
|
ssl_certificate /etc/letsencrypt/live/data.nhcarrigan.com/fullchain.pem;
|
|
ssl_certificate_key /etc/letsencrypt/live/data.nhcarrigan.com/privkey.pem;
|
|
|
|
location / {
|
|
proxy_set_header Host $host;
|
|
proxy_pass http://127.0.0.1:9999;
|
|
proxy_redirect off;
|
|
}
|
|
}
|