By reembrain
I looked everywhere for this but didn’t find any answer
I have an application, and I decided to run almost every blueprint in its own subdomain … static ones. example:
admin.domain.com > admin interface
security.domain.com > anything user related, login log out register …etc
api.domain.com > api
domain.com and www.domain.com > normal app
now I know for a fact that my code works perfectly fine, because when I test it using:
python run.py
flask run
uwsgi --socket 0.0.0.0:5000 --protocol=http -w run:app
it worked just fine with the intended result
I am usingubuntu 16.04 if it matters. while testing, I set SERVER_NAME to domain.com:5000. but now since I want to to run in production I changed it to domain.com but it still not working
here are my files:
[uwsgi]
module = run:app
master = true
processes = 5
socket = myrpoject.sock
chmod-socket = 660
vacuum = true
die-on-term = true
server {
listen 80;
server_name MY_IP domain.com www.domain.com;
location / {
include uwsgi_params;
uwsgi_pass unix:///home/gin/myproject/myproject.sock;
}
location ^~ /static/ {
include /etc/nginx/mime.types;
root /home/gin/myproject/app/;
}
}
[Unit]
Description=uWSGI instance to serve myproject
After=network.target
[Service]
User=gin
Group=www-data
WorkingDirectory=/home/gin/myproject
Environment="PATH=/home/gin/myproject/venv/bin"
ExecStart=/home/gin/myproject/venv/bin/uwsgi --ini uwsgi.ini --uid gin --gid www-data
[Install]
WantedBy=multi-user.target
and finally my digitalocean droplets without ns:
Type Hostname Value TTL (seconds)
A security.domain.com directs to MY_IP 80
A admin.domain.com directs to MY_IP 80
A api.domain.com directs to MY_IP 80
A www.domain.com directs to MY_IP 80
A domain.com directs to MY_IP 80
I tried setting www as CNAME but nothing really changed
Right now with these config:
www.domain.com and domain.com both works, everything works as intended
subdomains don’t work at all, they instead redirect to “welcome to nginx” page
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
If I understand correctly, you would like all subdomains to also be handled by your flask app?
If YES - I think you need to change your nginx config line to also listen for these subdomains:
change
server_name MY_IP domain.com www.domain.com;
to
server_name MY_IP *.domain.com;
That’s a very well-written question!
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.