94 | | * to use a unix socket, add the line "scgi_local = ~/torrent/.socket/rpc.socket" (this is the recommended way) |
95 | | * to listen for connections from localhost on port 12345 add the line "scgi_port = :12345" |
96 | | * to listen for connections from a specific interface on port 12345 add the line "scgi_port = 123.123.123.123:12345" |
| 94 | * to use a unix socket, add the line ''scgi_local = ~/torrent/.socket/rpc.socket'' (this is the recommended way) |
| 95 | * to listen for connections from localhost on port 12345 add the line ''scgi_port = :12345'' |
| 96 | * to listen for connections from a specific interface on port 12345 add the line ''scgi_port = 123.123.123.123:12345'' |
113 | | * set the "base" variable to your rTWi installation's URL (without index file, and with a trailing slash) "base = http://example.com/" |
114 | | * set the "user_conf" variable to the path of your user.conf file (it's always safe, to keep it outside your webroot) |
115 | | * if your want to rename your index.php and/or input.php you need to set the "index" and/or "input" variable(s) |
| 113 | * set the ''base'' variable to your rTWi installation's URL (without index file, and with a trailing slash) ''base = "http://example.com/"'' |
| 114 | * set the ''user_conf'' variable to the path of your user.conf file (it's always safe, to keep it outside your webroot) |
| 115 | * if your want to rename your index.php and/or input.php you need to set the ''index'' and/or ''input'' variable(s) |
| 116 | * If a value in the conf file contains any non-alphanumeric characters it needs to be enclosed in double-quotes (") |
122 | | * if you're using a unix socket enter "address = !unix://~/torrent/.socket/rpc.socket" |
123 | | * if you're using scgi_port enter "address = 123.123.123.123:12345" ("address = :12345" works for localhost) |
124 | | * if you're using an SCGI gateway enter "address = !http://example.com/RPC2" (also works when Basic HTTP Authentication is on for the URL) |
125 | | * enter "pass = 1234567890abcdef1234567890abcdef12345678" where the right side is the sha1 hash of the choosen password for the user (you can generate the sha1 hash [http://www.johnmaguire.us/tools/hashcalc/index.php online]) |
126 | | * If a value in the conf file contains any non-alphanumeric characters it needs to be enclosed in double-quotes (") |
| 123 | * if you're using a unix socket enter ''address = "!unix://~/torrent/.socket/rpc.socket"'' |
| 124 | * if you're using scgi_port enter ''address = "123.123.123.123:12345"'' (''address = ":12345"'' works for localhost) |
| 125 | * if you're using an SCGI gateway enter ''address = "!http://example.com/RPC2"'' (also works when Basic HTTP Authentication is on for the URL) |
| 126 | * enter ''pass = "1234567890abcdef1234567890abcdef12345678"'' where the right side is the sha1 hash of the choosen password for the user (you can generate the sha1 hash [http://www.johnmaguire.us/tools/hashcalc/index.php online]) |
| 127 | * if a value in the conf file contains any non-alphanumeric characters it needs to be enclosed in double-quotes (") |