[2024-feb-29] Sad news: Eric Layton aka Nocturnal Slacker aka vtel57 passed away on Feb 26th, shortly after hospitalization. He was one of our Wiki's most prominent admins. He will be missed.

Welcome to the Slackware Documentation Project

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
howtos:network_services:weave [2013/07/01 21:16 (UTC)] – Don't fuck with my articles unless you discussed it with me first. alienbobhowtos:network_services:weave [2013/07/09 21:07 (UTC)] (current) – Cosmetic update to use the same example pathname all across the board alienbob
Line 55: Line 55:
       ErrorLog  /var/log/httpd/sync.myserver.net-error.log       ErrorLog  /var/log/httpd/sync.myserver.net-error.log
     </VirtualHost>     </VirtualHost>
-</code> This tells apache that a script called “sync.wsgi” is going to be spawned as user “weave:sync” whenever a client connects to %%http://sync.myserver.net/%% .+</code> Apache 2.4 uses a different syntax for access control: <code> 
 +    <Directory /usr/local/server-full> 
 +      Require all granted 
 +    </Directory> 
 +     
 +    <VirtualHost *:80> 
 +      ServerName sync.myserver.net 
 +      DocumentRoot /usr/local/server-full 
 +      WSGIProcessGroup sync 
 +      WSGIDaemonProcess sync user=weave group=sync processes=2 threads=25 
 +      WSGIPassAuthorization On 
 +      WSGIScriptAlias / /usr/local/server-full/sync.wsgi 
 +      CustomLog /var/log/httpd/sync.myserver.net-access.log combined 
 +      ErrorLog  /var/log/httpd/sync.myserver.net-error.log 
 +    </VirtualHost> </code> This tells apache that a script called “sync.wsgi” is going to be spawned as user “weave:sync” whenever a client connects to %%http://sync.myserver.net/%% . 
  
   * Modify your apache server's main configuration file "''/etc/httpd/httpd.conf''", in order to make it load the mod_wsgi module and use its configuration file. Add the following lines to the ''httpd.conf'': <code>   * Modify your apache server's main configuration file "''/etc/httpd/httpd.conf''", in order to make it load the mod_wsgi module and use its configuration file. Add the following lines to the ''httpd.conf'': <code>
 howtos:network_services:weave ()