hello there
im running python bottle framwork with apache2 via wsgi handling
the problem i had it is that my website (Ip address ) still display the error page 500 !! without showing the html pages from handling from wsgi script !
this the app.wsgi file (the error is not in this file I’m sure):
import sys,os ,bottle
sys.path.append('/var/www/apabtl/')
import hello
application = bottle.default_app()
this is may 000-default.conf :
ServerName 147.178.331.204
ServerAdmin YU@gmail.com
ServerRoot "/var/www/apabtl"
DocumentRoot "/var/www/apabtl"
#ServerName 147.178.331.204
WSGIDaemonProcess apabtl threads=5
WSGIScriptAlias / /var/www/apabtl/app.wsgi
<Directory /var/www/apabtl>
<Files app.wsgi>
Require all granted
</Files>
</Directory>
please can you help me (:
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Sorry to see that your question hasn’t received an answer yet. Unfortunately, after this much time, it is unlikely that an answer for this specific question will be provided. For people still landing here via search, check out this tutorial. It shows you how to get up and running with Django, Apache, and mod_wsgi
on Ubuntu:
Click below to sign up and get $100 of credit to try our products over 60 days!
Hi @say090u,
Do you by any chance have any errors in your logs? From the look of your configuration I assume your application is misbehaving. Do you know if your application works in python without Apache?