In this tutorial, we are going to show you how to install the Flask application on Ubuntu 22.04 with Apache Web server and mod WSGI.
Flask is a very popular web framework written in Python and used by many developers worldwide. The Apache is the Web server where requests are coming to the application, and the Mod WSGI is the Apache module that implements a WSGI-compliant interface for hosting Python-based web applications.
Installing Flask with Apache and WSGI on Ubuntu 22.04 is a process that may take up to 30 minutes. Let’s get started!
Table of Contents
Prerequisites
- A server with Ubuntu 22.04 as OS
- User privileges: root or non-root user with sudo privileges
Step 1. Update the System
Before installing the software, we need to update the system packages to the latest versions available.
Step 2. Install Apache Web Server
To install the Apache Web server execute the following command:
Once installed, start and enable the service.
Check if the service is up and running:
You should receive the following output:
Step 3. Install Python
We need to install the latest version of python3 for Ubuntu 22.04 and the python package manager pip along with the python virtual environment. To achieve this execute the following commands:
To check the installed python version, execute the following command:
You should get the following output:
Step 4. Install Flask Application
The next step is to install and deploy the flask application in the virtual environment.
To create the virtual environment in the opt directory, execute the following command:
Once the virtual flask environment is created, you need to activate it using the following command:
The command prompt will change and will look as described below:
The next step is to install the flask application inside the virtual environment with the following command:
The successfully installed flask application will have the following output:
Next is to create a sample flask application python file:
Insert the following lines of code:
Save the file, close it and set up the FLASK_APP environment variable.
Now, we can test the application by running the following command:
You will receive the following output:
As you can see in the output, this is a development server and is not recommended in a production deployment. We need to use the WSGI server instead. You can quit the running process with the CTRL+C command and deactivate the environment with the deactivate command for now. In the next step, we will configure the Apache Web server with mod WSGI.
Step 5. Create WSGI file
Before we create a wsgi file in the virtual flask environment, we first need to install some packages on the server level. To install the required libraries, execute the following command:
Once installed, create the file:
Paste the following lines of code, save and close the file.
We are done with this part. Let’s go to the next step.
Step 6. Create Apache Virtual Host File
Now, in the last step, we will create an Apache virtual host file and will configure it to work with the Mod WSGI parameters and flask-app.wsgi file.
Open the file, and paste the following lines of code:
Enable the Apache2 configuration file:
Check the syntax of the Apache2 configuration.
You should receive the following output:
If you receive this output, you can restart the Apache service safely.
Now, you can access the Flask Web interface via your domain at http://YourDomain.com.
That’s it. Congratulations, you successfully installed and configured Flask Application on Ubuntu 22.04 with Apache and WSGI. If you find this process difficult, you can always contact our technical support, who will help you with any aspect of this configuration. Feel free to contact us anytime you want. We are available 24/7.
If you liked this post about installing Flask on Ubuntu 22.04 with Apache and WSGI, please share it with your friends on social networks or simply leave a reply below.
how do we get ssl
You can follow our blogpost at https://www.rosehosting.com/blog/how-to-install-lets-encrypt-with-apache-on-ubuntu-22-04/ to install a free SSL certificate from Let’s Encrypt
Very clear and complete tutorial. I’m migrating from Perl DBI / CGI.pm to Python SQL Alchemy and Flask / Apache and this was a great jumpstart. One thing I would mention is that if you need an SSL connection change the first line in the flask.conf to read:
Great article, but a few missing steps. I was able to figure out after much extra reading, hopes this helps someone (or myself next time I use this article).
1. You need to make sure the permissions/file ownership in the /opt/flask-app isn’t root but the logged in user. This is done using the chown command. -R is recursive so changes ownership of all subfolders and $USER:$USER means that linux replaces with the currently logged in username (no need to change this, leave as $USER)
sudo chown -R $USER:$USER /opt/flask-app
2. Under step #6, create Apache Virtual Host File, in the pasted code you need to change user=www-data group=www-data from www-data to whatever your username and groupname is. In my case I was ubuntu as both.
3. You need to add the following lines to the main apache config file. In my case it was called apache2.conf but has also been called httpd.conf and is located in /etc/apache2/:
WSGIScriptAlias / /opt/flask-app/flask-app.wsgi
4. The default path for apache2 to pull up is 000-default.conf. You want to disable this using the:
sudo a2dissite 000-default. This is so your sudo a2ensite flask.conf will run and not the 000-default.conf path. Not completely sure if this step is necessary.
I was having a real struggle trying to get Flask running on Ubuntu 22.04 with Apache and WSGI. This guide made everything so much clearer, and I finally got everything working after following the steps. The installation was smooth once I updated my system and followed through with the Apache setup and Flask deployment inside a virtual environment.
If you’re looking for detailed instructions on setting up Flask on Ubuntu, I highly recommend checking out this guide. It really helped me overcome the roadblocks I was facing, and I’m now up and running! Thanks for such a great resource!