Deploy a Flask Website to AWS Elastic Beanstalk
Create a Flask-powered website and deploy it to AWS Elastic Beanstalk including SSL via Let's Encrypt
This post explains how to set up a Flask website serving as a starting point for building a simple website. I’ve compiled the necessary steps to successfully deploy the Website via AWS Elastic Beanstalk, including configuration of SSL certificates via Let’s Encrypt.
We’ll use…
- Python 3 and PyCharm as an IDE
- AWS Elastic Beanstalk to host our website
- Flask, a popular Python micro framework for the web
- Flask’s automatically configured Jinja2-templating engine
- Let’s Encrypt for SSL encryption
- Gunicorn (WSGI server)
The end result is a fully working website serving as a starting point for your Flask-powered website project.
Project Setup and Dependencies
In this step we will install all requirements on our local machine. I’m using macOS 10.12 and Python 3.6 - the commands might not correspond exactly to your environment, so be sure to watch out for that.
Important: Be sure while debugging, when serving the website or when you install additional dependencies below using pip3, change to the virtual environment with the following commands:
Open the project folder in your code editor, e.g., VS Code or PyCharm.
To get started, add the following barebone code:
Prepare the WSGI server (we’re using gunicorn):
You can make sure that everything is working properly by directly executing the Flask app:
Alternatively, run gunicorn to serve your app:
Press CTRL+C to exit the respective process. Our website is now working with a minimal “Hello world!” placeholder and we are ready to proceed.
Jinja2 Templating
We will set up a basic directory structure for your project to add templating capabilities to our app.
Change your main Flask app code to accommodate the two example subpages (index page and contact page):
This structure will set up two views, called index and contact, with the according templates, index.html
and contact.html
which are stored in /templates
.
You can use the below boilerplate HTML for these two template files, in order to get you started right away:
Deployment to AWS Elastic Beanstalk
In order to deploy our website to AWS Elastic Beanstalk, we first need to install the AWS Elastic Beanstalk command line interface. I recommend installation using brew, which handles all dependencies correctly. If you have it already installed on your machine, you can skip this step. Run this command in order to install the CLI:
You can check if the installation was successful by executing:
Now, run the following command in your project folder to initialize the application and register it with AWS Elastic Beanstalk (be sure to change the region accordingly; below, eu-west-1 is selected):
This will trigger several prompts which will help you to set up the application, most importantly the credentials for your AWS account.
- You will need to enter your AWS credentials, namely aws-access-id and aws-secret-key, if not specified before via environment variables
The following command will create an environment (called testenv-barebone-flask-rest-website
), provision the necessary instance (we’ll use a single instance setup without load balancer for now), and deploy your application:
This will take a few minutes to complete. Note that at this point, the application will not work yet, because the default WSGI-Path configured by AWS Elastic Beanstalk is application.py
, whereas in our project it is wsgi.py
.
In order to tell AWS Elastic Beanstalk to set up the EC2 instances with the correct WSGI-Path (where our website should ultimately be served from), we have to adjust the configuration:
Change application.py
to wsgi.py
(see below). This will ensure that the correct file from our project folder is referenced (in other words, defining wsgi.py
as the entry point to our application).
Exit and confirm the changes. This will subsequently deploy the new configuration to your EC2 instance (i.e., replace the current instance).
After deployment of the new configuration (which takes another 2–3 minutes) you can type the following command to open the URL under which your website is served from - and confirm that everything is working as it should:
You can also retrieve the CNAME (alongside other useful information about your environment) like so:
Now, your website boilerplate is up and running on AWS Elastic Beanstalk. You can access it with the endpoint provided by the above command.
If you make changes to your app’s source code, you can re-deploy your app to Elastic Beanstalk via the following command:
SSL Configuration via Let’s Encrypt
The steps below will show you how to configure an SSL certificate without additional charges, using Let’s Encrypt. First, you’ll need to create a hosted zone for your custom domain in Route 53. Then, you can attach a CNAME Alias in the hosted zone, pointing to your AWS Elastic Beanstalk deployment. See this AWS guide for more information.
Note: The next step will download a config file from gist.github.com. Be sure to check out the source code before pasting the command into your command line!
After you verify that the Route 53 DNS changes have propagated successfully, run the following commands in Terminal in the root of your project (be sure to replace the two environment variables with your email, as well as your domain name configured in Route 53 from the step above):
The config script above will install a cronjob to make sure that your SSL certificates are periodically renewed. Now, your website is served via AWS Elastic Beanstalk, accessible on your custom domain, and secured via SSL provided by Let’s Encrypt.
I hope you enjoyed this article - please let me know if you have any questions or if you run into any issue. Thanks for reading!