Report this

What is the reason for this report?

Target WSGI script looks for wrong file extension

Posted on January 1, 2019

I’m running a flask site and encountered an issue when setting up the virtual host because I initially typed the wrong file extension.

On /etc/apache2/sites-available/researchcenter.conf, I have

<VirtualHost *:80>
            ServerName xxx.com
            ServerAdmin info@xxx.com
            WSGIScriptAlias / /var/www/html/researchcenter/researchcenter.wsgi
            <Directory /var/www/html/researchcenter/app/>
                    Order allow,deny
                    Allow from all
            </Directory>
            Alias /static /var/www/html/researchcenter/app/static
            <Directory /var/www/researchcenter/app/static/>
                    Order allow,deny
                    Allow from all
            </Directory>
            ErrorLog /var/www/html/researchcenter/logs/error.log
            LogLevel warn
            CustomLog /var/www/html/researchcenter/logs/access.log combined
</VirtualHost>

Unfortunately, I initially entered WSGIScriptAlias / /var/www/html/researchcenter/researchcenter.w$ (please see the file extension should be .wsgi)

When I retrieve the domain name in the browser, I get a Not Found. The log reads:

Target WSGI script not found or unable to stat: /var/www/html/researchcenter/researchcenter.w$

I restarted apache after changing the file extension.

The file permissions for researchcenter.wsgi are 644.

I’d appreciate the help.



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.

Try this to see if it helps

chmod +x /var/www/html/researchcenter

Cheers

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.