Questions tagged [wsgi]

Web Server Gateway Interface is a specification for web servers and application servers to communicate with web applications. It is a Python standard, described in detail in PEP 333.

WSGI is the Web Server Gateway Interface. It is a specification for web servers and application servers to communicate with web applications (though it can also be used for more than that). It is a Python standard, described in detail in PEP 333.

124 questions
0
votes
0 answers

WSGI overrides Apache auto-virtual hosts

Using Apache2, I ran into this problem - WSGI overrides auto-virtual hosts. That is, example.com is running a Flask application, which is normal for me. But if I go to, say, foo.example.com, where there are other files, and also just index.html,…
Cymon
  • 1
  • 2
0
votes
1 answer

Server set up using app.yaml, cron.yaml, etc. But directories aren't recognized

As the title says, the server has been configured to recognize sub directories but for whatever reason they are not being recognized when I load a web page. Is there any way to debug what is going on? threadsafe: true api_version: 1 handlers: -…
0
votes
1 answer

Cant start wsgi through Nginx

At first: When i started nginx i see errors in log: unix:/root/project/flask_paramiko.sock failed (13: Permission denied) while connecting to upstream uwsgi.ini: [uwsgi] #chdir = /root/project module = wsgi:app master = true processes = 5 socket…
0
votes
1 answer

service apache2 start causes error in django

On running apache2 configtest I get Syntax error on line 2 of /etc/apache2/sites-enabled/firstweb.conf: Invalid command 'WSGIScriptAlias', perhaps misspelled or defined by a module not included in the server configuration Action 'configtest'…
1 2 3
8
9