Fossil

Check-in [13f6887b]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Missed a place where the SCGI docs needed updating.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 13f6887bc3b7bd6ba27cb96d11e995112062f11e
User & Date: mistachkin 2016-04-15 19:46:58.024
Context
2016-04-18
21:57
Minor edits to unify merge command warning messages, plus tests. ... (check-in: 451f04f6 user: joel tags: trunk)
2016-04-15
19:46
Missed a place where the SCGI docs needed updating. ... (check-in: 13f6887b user: mistachkin tags: trunk)
2016-04-13
08:19
Update <dirent.h> for Visual Studio to latest version 1.21 (September 2015) ... (check-in: dd498bba user: jan.nijtmans tags: trunk)
Changes
Unified Diff Ignore Whitespace Patch
Changes to www/server.wiki.
225
226
227
228
229
230
231

232
233
234
235
236
237
238
that does not support CGI.  A typical Nginx configuration to support SCGI
with Fossil would look something like this:
<blockquote><pre>
location /demo_project/ {
    include scgi_params;
    scgi_pass localhost:9000;
    scgi_param SCRIPT_NAME "/demo_project";

}
</pre></blockquote>
<p>
Note that Fossil requires the SCRIPT_NAME variable
in order to function properly, but Nginx does not provide this
variable by default.
So it is necessary to provide the SCRIPT_NAME parameter in the configuration.







>







225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
that does not support CGI.  A typical Nginx configuration to support SCGI
with Fossil would look something like this:
<blockquote><pre>
location /demo_project/ {
    include scgi_params;
    scgi_pass localhost:9000;
    scgi_param SCRIPT_NAME "/demo_project";
    scgi_param HTTPS "on";
}
</pre></blockquote>
<p>
Note that Fossil requires the SCRIPT_NAME variable
in order to function properly, but Nginx does not provide this
variable by default.
So it is necessary to provide the SCRIPT_NAME parameter in the configuration.