Report this

What is the reason for this report?

mod_wsgi configuration with apache2

Posted on June 4, 2016

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 (:



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

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:

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.