diff options
author | onefang | 2021-08-04 15:15:42 +1000 |
---|---|---|
committer | onefang | 2021-08-04 15:15:42 +1000 |
commit | 1956d7dce0d18a73aa54c5534e79ea9ba7d763f1 (patch) | |
tree | 98a9321228aff061132aecb4eab3041d31e34ff3 | |
parent | Missed commit. (diff) | |
download | opensim-SC-1956d7dce0d18a73aa54c5534e79ea9ba7d763f1.zip opensim-SC-1956d7dce0d18a73aa54c5534e79ea9ba7d763f1.tar.gz opensim-SC-1956d7dce0d18a73aa54c5534e79ea9ba7d763f1.tar.bz2 opensim-SC-1956d7dce0d18a73aa54c5534e79ea9ba7d763f1.tar.xz |
Attempt to send spamn-fcgi command to the right place.
Still needs work.
-rw-r--r-- | src/sledjchisl/sledjchisl.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/sledjchisl/sledjchisl.c b/src/sledjchisl/sledjchisl.c index a16efbf..02b5d0c 100644 --- a/src/sledjchisl/sledjchisl.c +++ b/src/sledjchisl/sledjchisl.c | |||
@@ -8227,14 +8227,11 @@ fcgiDone: | |||
8227 | { | 8227 | { |
8228 | // Start up the web stuff. TODO - remove this once we handle the fcgi stuff ourselves. | 8228 | // Start up the web stuff. TODO - remove this once we handle the fcgi stuff ourselves. |
8229 | I("Starting the web stuff."); | 8229 | I("Starting the web stuff."); |
8230 | char *d = xmprintf("%s.{bottom}", Ttab); | 8230 | char *c = xmprintf("spawn-fcgi -n -u %s -s %s/sledjchisl.socket -M 0660 -G www-data -- " |
8231 | char *c = xmprintf( | ||
8232 | "spawn-fcgi -n -u %s -s %s/sledjchisl.socket -M 0660 -G www-data -- " | ||
8233 | "/usr/bin/valgrind --leak-check=full sledjchisl", | 8231 | "/usr/bin/valgrind --leak-check=full sledjchisl", |
8234 | scUser, scCache, scRoot); | 8232 | scUser, scCache, scRoot); |
8235 | sendTmuxCmd(d, c); | 8233 | sendTmuxCmd(Ttab, c); |
8236 | free(c); | 8234 | free(c); |
8237 | free(d); | ||
8238 | } | 8235 | } |
8239 | else | 8236 | else |
8240 | I("NOT Starting the web stuff."); | 8237 | I("NOT Starting the web stuff."); |