Question
mod_wsgi configuration with apache2
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()
- hello is my bottle script (which returned & renders the html pages)
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>
- apabtl is my application.
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.
×
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?