Skip to content

Latest commit

 

History

History
55 lines (36 loc) · 2.05 KB

droplet_directions.md

File metadata and controls

55 lines (36 loc) · 2.05 KB

Droplet Directions

These directions are for setting up escalation on a DigitalOcean droplet.

Pointing a domain to Escalation (Nginx)

One method to point a domain or subdomain to a port:

server {
        listen 80;
        listen [::]:80;
                
        server_name your_domain.com;

        location / {
                proxy_pass http://127.0.0.1:8000;
        }
}

todo: set Flask SECRET_KEY on server, not in code, set postgres db password, set password for admin actions