Flask: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
Line 112: Line 112:
* [https://www.digitalocean.com/community/tutorials/how-to-deploy-a-flask-application-on-an-ubuntu-vps Deploy a Flask Application on Ubuntu]
* [https://www.digitalocean.com/community/tutorials/how-to-deploy-a-flask-application-on-an-ubuntu-vps Deploy a Flask Application on Ubuntu]
* [https://flask.palletsprojects.com/en/1.1.x/deploying/wsgi-standalone Standalone WSGI Containers]
* [https://flask.palletsprojects.com/en/1.1.x/deploying/wsgi-standalone Standalone WSGI Containers]
* [https://flask.palletsprojects.com/en/1.1.x/tutorial/templates/ Jinja Templating Tutorial]
* [https://flask.palletsprojects.com/en/1.1.x/templating/ Templating with Jinja]
* [https://flask.palletsprojects.com/en/1.1.x/templating/ Templating with Jinja]
* [[Convention for WSGI]]
* [[Convention for WSGI]]

Revision as of 16:38, 28 May 2020

Python3

apt install python3.8
pip3 install virtualenv
cd /var/www/flask/RestApi/RestApi/

virtualenv venv
source venv/bin/activate
pip install Flask
deactivate

Flask

mkdir -p /var/www/flask/RestApi/RestApi/{static,templates}
cat > /var/www/flask/RestApi/RestApi/__init__.py << EOF
from flask import Flask
app = Flask(__name__)
@app.route("/")
def hello():
    return "Hello, Bangladesh!"
if __name__ == "__main__":
    app.run()
EOF

WSGI3

cd /var/www/flask/RestApi/
cat > /var/www/flask/RestApi/RestApi.wsgi << EOF
#!/usr/bin/python
activate_this = '/var/www/flask/RestApi/RestApi/venv/bin/activate_this.py'
with open(activate_this) as file_:
    exec(file_.read(), dict(__file__=activate_this))

import sys
import logging
logging.basicConfig(stream=sys.stderr)
sys.path.insert(0,"/var/www/flask/RestApi/")

from RestApi import app as application
application.secret_key = 'Add your secret key'
EOF

Apache2

WSGI3

apt install apache2
systemctl restart apache2
apt install libapache2-mod-wsgi python-dev
a2enmod wsgi
a2dismod wsgi
apt remove libapache2-mod-wsgi python-dev
apt install libapache2-mod-wsgi-py3 python3-dev
a2enmod wsgi
apache2ctl -t
systemctl enable apache2
systemctl restart apache2

SITE

vim /etc/apache2/sites-available/000-default.conf

WSGIScriptAlias /rest "/var/www/flask/RestApi/RestApi.wsgi"
<Directory "/var/www/flask/RestApi/RestApi">
    Order Allow,Deny
    Allow from all
</Directory>

Alias /rest/static "/var/www/flask/RestApi/RestApi/static/"
<Directory "/var/www/flask/RestApi/RestApi/static">
    Order Allow,Deny
    Allow from all
</Directory>
https://cdn.chorke.org/rest

Good To Know

a2enmod wsgi
a2dismod wsgi

apache2ctl -t
apache2ctl -M

systemctl status apache2
systemctl enable apache2
systemctl restart apache2

virtualenv venv --python=python3.6
source venv/bin/activate

nohup python RestApi/RestApi/__init__.py>RestApi.log &
ssh -L 5000:localhost:5000 [email protected]

apt install net-tools
ss -lptn 'sport = :5000'
netstat -nlp | grep :5000

References