2016-09-28 7 views
0

J'ai Debian tronqué. J'aimerai lancer le hello.wt qui vient dans le paquet witty-examples. J'utilise [1] comme guide, mais fastcgi ne fonctionne pas, et fcgi a fonctionné pendant un certain temps, mais maintenant il ne fonctionne plus.Installer wt cgi dans debian avec apache2 suexec fcgi wt

show journal des erreurs du Apache2:

[2016-Sep-28 11:48:59.548562] 5219 - [info] "WServer/wthttp: fatal: Document root was not set, or was set to the empty path. Use --docroot to set the HTML root directory." 
[Wed Sep 28 11:48:59.549866 2016] [fcgid:warn] [pid 5163:tid 139718772893440] (104)Connection reset by peer: [client ::1:54290] mod_fcgid: error reading data from FastCGI server 
[Wed Sep 28 11:48:59.549926 2016] [core:error] [pid 5163:tid 139718772893440] [client ::1:54290] End of script output before headers: cgi-binhello.wt 

Les fichiers de configuration sont:

# suexec/www-data 
/var/www 
public_html/cgi-binhello.wt 

Ou j'avais sonde avec le même résultat avec:

# suexec/www-data 
/var/www 
public_html/hello.wt 

Le confi site a :

DocumentRoot /var/www/wt 
SuexecUserGroup juanfe juanfe 
ScriptAlias "/cgi-bin/" "/var/www/public_html/cgi-bin" 
<Directory /var/www/wt/> 
    Allow from all 
    Options +ExecCGI 
    AddHandler cgi-script .wt 
</Directory> 

Le fcgi.conf est comme:

<IfModule mod_fcgid.c> 
    AddHandler fcgid-script .wt 
    SocketPath /var/lib/apache2/fcgid/sock 
    IdleTimeout -1 
    ProcessLifeTime -1 
    MaxProcessCount 10 
    DefaultMaxClassProcessCount 10 
    DefaultMinClassProcessCount 1 
</IfModule> 

Le fichier hello.wt appartiennent à mon uid et gid, qui est juanfe, mon utilisateur régulier. Et j'ai plateau:

/var/www/public_html/cgi-binhello.wt 

Et avec

/var/www/public_html/hello.wt 

Toute aide sera grande, grâce à l'avance.

Juanfe

Répondre

0

Je le résoudre en ajoutant le fichier de configuration/etc/apache2/suexec/juanfe, avec:

/var/www 
public_html/cgi-binhello.wt 

Et la définition des autorisations dans le répertoire/var/www/HTML publique, et/var/run/wt:

$ sudo chown juanfe: /var/www/public-html 
$ sudo chown juanfe: /var/run/wt 
$ sudo chmod 755 /var/www/public-html 
$ sudo chmod 755 /var/run/wt