forked from orbit-oss/flask
Minor typos and spelling fixed
According to http://dictionary.cambridge.org/ "webserver" is incorrect, "web server" = correct
This commit is contained in:
parent
a1b273658d
commit
2cfdf7a839
1 changed files with 7 additions and 7 deletions
|
|
@ -79,7 +79,7 @@ handle all incoming requests::
|
||||||
</Location>
|
</Location>
|
||||||
</VirtualHost>
|
</VirtualHost>
|
||||||
|
|
||||||
These processes will be managed by Apache. If you're using an standalone
|
These processes will be managed by Apache. If you're using a standalone
|
||||||
FastCGI server, you can use the FastCgiExternalServer directive instead.
|
FastCGI server, you can use the FastCgiExternalServer directive instead.
|
||||||
Note that in the following the path is not real, it's simply used as an
|
Note that in the following the path is not real, it's simply used as an
|
||||||
identifier to other
|
identifier to other
|
||||||
|
|
@ -87,7 +87,7 @@ directives such as AliasMatch::
|
||||||
|
|
||||||
FastCgiServer /var/www/html/yourapplication -host 127.0.0.1:3000
|
FastCgiServer /var/www/html/yourapplication -host 127.0.0.1:3000
|
||||||
|
|
||||||
If you cannot set ScriptAlias, for example on an shared web host, you can use
|
If you cannot set ScriptAlias, for example on a shared web host, you can use
|
||||||
WSGI middleware to remove yourapplication.fcgi from the URLs. Set .htaccess::
|
WSGI middleware to remove yourapplication.fcgi from the URLs. Set .htaccess::
|
||||||
|
|
||||||
<IfModule mod_fcgid.c>
|
<IfModule mod_fcgid.c>
|
||||||
|
|
@ -168,7 +168,7 @@ Configuring nginx
|
||||||
Installing FastCGI applications on nginx is a bit different because by
|
Installing FastCGI applications on nginx is a bit different because by
|
||||||
default no FastCGI parameters are forwarded.
|
default no FastCGI parameters are forwarded.
|
||||||
|
|
||||||
A basic flask FastCGI configuration for nginx looks like this::
|
A basic Flask FastCGI configuration for nginx looks like this::
|
||||||
|
|
||||||
location = /yourapplication { rewrite ^ /yourapplication/ last; }
|
location = /yourapplication { rewrite ^ /yourapplication/ last; }
|
||||||
location /yourapplication { try_files $uri @yourapplication; }
|
location /yourapplication { try_files $uri @yourapplication; }
|
||||||
|
|
@ -195,7 +195,7 @@ have to figure out how to calculate `PATH_INFO` and `SCRIPT_NAME`::
|
||||||
Running FastCGI Processes
|
Running FastCGI Processes
|
||||||
-------------------------
|
-------------------------
|
||||||
|
|
||||||
Since Nginx and others do not load FastCGI apps, you have to do it by
|
Since nginx and others do not load FastCGI apps, you have to do it by
|
||||||
yourself. `Supervisor can manage FastCGI processes.
|
yourself. `Supervisor can manage FastCGI processes.
|
||||||
<http://supervisord.org/configuration.html#fcgi-program-x-section-settings>`_
|
<http://supervisord.org/configuration.html#fcgi-program-x-section-settings>`_
|
||||||
You can look around for other FastCGI process managers or write a script
|
You can look around for other FastCGI process managers or write a script
|
||||||
|
|
@ -210,14 +210,14 @@ manual solution which does not persist across system restart::
|
||||||
Debugging
|
Debugging
|
||||||
---------
|
---------
|
||||||
|
|
||||||
FastCGI deployments tend to be hard to debug on most webservers. Very
|
FastCGI deployments tend to be hard to debug on most web servers. Very
|
||||||
often the only thing the server log tells you is something along the
|
often the only thing the server log tells you is something along the
|
||||||
lines of "premature end of headers". In order to debug the application
|
lines of "premature end of headers". In order to debug the application
|
||||||
the only thing that can really give you ideas why it breaks is switching
|
the only thing that can really give you ideas why it breaks is switching
|
||||||
to the correct user and executing the application by hand.
|
to the correct user and executing the application by hand.
|
||||||
|
|
||||||
This example assumes your application is called `application.fcgi` and
|
This example assumes your application is called `application.fcgi` and
|
||||||
that your webserver user is `www-data`::
|
that your web server user is `www-data`::
|
||||||
|
|
||||||
$ su www-data
|
$ su www-data
|
||||||
$ cd /var/www/yourapplication
|
$ cd /var/www/yourapplication
|
||||||
|
|
@ -229,7 +229,7 @@ that your webserver user is `www-data`::
|
||||||
In this case the error seems to be "yourapplication" not being on the
|
In this case the error seems to be "yourapplication" not being on the
|
||||||
python path. Common problems are:
|
python path. Common problems are:
|
||||||
|
|
||||||
- Relative paths being used. Don't rely on the current working directory
|
- Relative paths being used. Don't rely on the current working directory.
|
||||||
- The code depending on environment variables that are not set by the
|
- The code depending on environment variables that are not set by the
|
||||||
web server.
|
web server.
|
||||||
- Different python interpreters being used.
|
- Different python interpreters being used.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue