# cPanel Apache + Passenger (Python App)
# If you created the app via "Setup Python App", cPanel writes its own
# Passenger directives — leave those in place and keep this file as a fallback.

PassengerEnabled On
PassengerAppType wsgi
PassengerStartupFile passenger_wsgi.py

<IfModule mod_rewrite.c>
  RewriteEngine On
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^(.*)$ passenger_wsgi.py [QSA,L]
</IfModule>
