Synchronet v3.19b-Win32 (install) has been released (Jan-2022).

You can donate to the Synchronet project using PayPal.

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
server:web [2014/04/03 03:47] – [webctrl.ini per-directory configuration file] Upcoming per-directory constraints (3.17+) deuceserver:web [2015/11/06 10:02] – [webctrl.ini per-directory configuration file] Document Rewrite and JSPreExec webctrl.ini keys. deuce
Line 49: Line 49:
 === Authorization === === Authorization ===
  
-Default value: ''Basic,Default''+Default value: ''Basic,Digest''
  
 A comma-separated list of authentication mechanisms in order of preference. A comma-separated list of authentication mechanisms in order of preference.
Line 173: Line 173:
 Disable SSJS execution. Disable SSJS execution.
  
 +''ALLOW_TLS''
  
 +Enable TLS support.
 ==== Other configuration files ==== ==== Other configuration files ====
  
Line 259: Line 261:
 </file> </file>
  
 +=== FastCGISocket ===
 +Specifies the socket and port of a FastCGI listener in the <Address>:<Port> format (ie: 127.0.0.1:9000).  Should be used with wildcard sections like this:
 +<file webctrl.ini>
 +[*.php]
 +FastCGISocket=127.0.0.1:9000
 +</file>
 +
 +Added on November 1st, 2015 to CVS (in 3.17a).
 +
 +See [[howto:php]] for details on using with PHP.
 +
 +=== Rewrite* ===
 +Specifies a Javascript snippet which can modify the http_request.request_string.  This allows internal redirects like the RewriteRule feature in Apache .htaccess files.  The key must *begin* with the string "Rewrite" which may be followed by any legal INI key characters.  The order of execution is not guaranteed.
 +
 +Added on November 3rd, 2015 to CVS (in 3.17a).
 +
 +=== JSPreExec ===
 +A JavaScript snippet which is executed in the same context as Rewrite* lines, but before any Rewrites are executed.  This allows load()ing some common code before execution... ie: ''JSPreExec=load(js.startup_dir+'/rewrite_lib.js');''.
 +
 +Added on November 3rd, 2015 to CVS (in 3.17a).
  
 ===== JavaScript Objects ===== ===== JavaScript Objects =====