500 Server Error With Running Flask App With CGI Script – Apache
I keep receiving a 500 Internal Server Error with my Python Flask/CGI program. I am running it on shared hosting, so I followed this tutorial: https://medium.com/@dorukgezici/how-to-setup-python-flask-app-on-shared-hosting-without-root-access-e40f95ccc819 This is my main python script: (~/website/mainApp.py) from flask import Flask app = Flask(__name__)…