Re: [users@httpd] Intermittent/spontaneous shutdowns

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Wednesday 30 March 2005 16:01, Joe Orton wrote:
> Do you used piped loggers?

Sorry for my ignorance; I don't know what piped loggers are.

I have basically 3 virtual hosts;
 *  planet.dpml.net is a default virt host.
 *  scm.dpml.net is a subversion configured one.
 *  issues.dpml.net is a mod_jk to tomcat running Jira
    (also happened while still using mod_jk2)

There are a bunch of mods-enabled;
cgi.load   dav.load     dav_svn.load  php4.load   proxy_http.load  ssl.load
cgid.load  dav_fs.load  jk.load       proxy.load  rewrite.load     
userdir.load


But basically most stuff out of the box, on a very-low traffic box.


Cheers
Niclas

P.s the sites-enabled contents;

<VirtualHost *:80>
    ServerName planet.dpml.net
    ServerAdmin webmaster@localhost

    DocumentRoot /var/http/planet

    <Directory />
        Options FollowSymLinks
        AllowOverride None
    </Directory>
    <Directory /var/http/planet>
        Options Indexes FollowSymLinks MultiViews
        AllowOverride None
        Order allow,deny
        allow from all
    </Directory>

    ErrorLog /var/log/apache2/planet.error.log

    # Possible values include: debug, info, notice, warn, error, crit,
    # alert, emerg.
    LogLevel warn
    CustomLog /var/log/apache2/planet.access.log combined
    ServerSignature On

    Alias /icons/ "/usr/share/apache2/icons/"
    <Directory "/usr/share/apache2/icons">
        Options Indexes MultiViews
        AllowOverride None
        Order allow,deny
        Allow from all
    </Directory>
</VirtualHost>

<VirtualHost *:443>
    SSLEngine on
    SSLCertificateKeyFile ssl/server.key
    SSLCertificateFile ssl/server.crt

    ServerName scm.dpml.net
    ServerAdmin webmaster@localhost

    DocumentRoot /var/http/scm
    <Directory />
        Options FollowSymLinks
        AllowOverride None
    </Directory>
    <Directory /var/http/scm>
        Options Indexes FollowSymLinks MultiViews
        AllowOverride None
        Order allow,deny
        allow from all
    </Directory>

    ErrorLog /var/log/apache2/scm.error.log

    # Possible values include: debug, info, notice, warn, error, crit,
    # alert, emerg.
    LogLevel warn
    CustomLog /var/log/apache2/scm.access.log combined
    ServerSignature On

    Alias /icons/ "/usr/share/apache2/icons/"
    <Directory "/usr/share/apache2/icons">
        Options Indexes MultiViews
        AllowOverride None
        Order allow,deny
        Allow from all
    </Directory>
    <Location /repos>
        DAV svn
        SVNParentPath /var/scm/repos
        # our access control policy
        AuthzSVNAccessFile /var/scm/admin/svn-authz-access.conf

        # try anonymous access first, resort to real
        # authentication if necessary.
        Satisfy Any
        Require valid-user

        # how to authenticate a user
        AuthType Basic
        AuthName "Subversion repository"
        AuthUserFile /var/scm/admin/users.pwd
    </Location>
</VirtualHost>

<VirtualHost *:80>
    ServerName issues.dpml.net
    ServerAdmin webmaster@localhost
    DocumentRoot /var/jira/atlassian-jira-enterprise-3.1-standalone/atlassian-jira/

    ErrorLog /var/log/apache2/issues.error.log
    CustomLog /var/log/apache2/issues.access.log combined
    <Directory 
"/var/jira/atlassian-jira-enterprise-3.1-standalone/atlassian-jira">
        Options Indexes
    </Directory>
    JkMount /* jira
    <Location "/WEB-INF">
        AllowOverride None
        deny from all
    </Location>
</VirtualHost>

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@xxxxxxxxxxxxxxxx
   "   from the digest: users-digest-unsubscribe@xxxxxxxxxxxxxxxx
For additional commands, e-mail: users-help@xxxxxxxxxxxxxxxx



[Index of Archives]     [Open SSH Users]     [Linux ACPI]     [Linux Kernel]     [Linux Laptop]     [Kernel Newbies]     [Security]     [Netfilter]     [Bugtraq]     [Squid]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Samba]     [Video 4 Linux]     [Device Mapper]

  Powered by Linux