500 Server error

This support forum board is for support questions relating to Nagios Log Server, our solution for managing and monitoring critical log data.
User avatar
BanditBBS
Posts: 2474
Joined: Tue May 31, 2011 12:57 pm
Location: Scio, OH
Contact:

Re: 500 Server error

Post by BanditBBS »

Code: Select all

[root@iss-chi-nag07 ~]# yum list installed | grep httpd
httpd.x86_64                       2.2.15-47.el6_7.1       @rhel-x86_64-server-6
httpd-tools.x86_64                 2.2.15-47.el6_7.1       @rhel-x86_64-server-6

Code: Select all

[root@iss-chi-nag07 ~]# cat /etc/httpd/conf.d/* /etc/httpd/conf/httpd.conf
LoadModule dnssd_module modules/mod_dnssd.so

DNSSDEnable on
#DNSSDAutoRegisterVHosts on
#DNSSDAutoRegisterUserDir on
Alias /nagioslogserver "/var/www/html/nagioslogserver/www/"

<Directory "/var/www/html/nagioslogserver/www/">
#  SSLRequireSSL
   Options FollowSymLinks
   AllowOverride None
   Order allow,deny
   Allow from all
</Directory>

RewriteEngine on
RewriteCond $1 !^(index\.php|scripts|media|app|js|css|img|font|vendor|config.js)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule nagioslogserver/(.*)$ /var/www/html/nagioslogserver/www/index.php/$1 [L,QSA]
#
# PHP is an HTML-embedded scripting language which attempts to make it
# easy for developers to write dynamically generated webpages.
#
<IfModule prefork.c>
  LoadModule php5_module modules/libphp5.so
</IfModule>
<IfModule worker.c>
  LoadModule php5_module modules/libphp5-zts.so
</IfModule>

#
# Cause the PHP interpreter to handle files with a .php extension.
#
AddHandler php5-script .php
AddType text/html .php

#
# Add index.php to the list of files that will be served as directory
# indexes.
#
DirectoryIndex index.php

#
# Uncomment the following line to allow PHP to pretty-print .phps
# files as PHP source code:
#
#AddType application/x-httpd-php-source .phps

This directory holds Apache 2.0 module-specific configuration files;
any files in this directory which have the ".conf" extension will be
processed as Apache configuration files.

Files are processed in alphabetical order, so if using configuration
directives which depend on, say, mod_perl being loaded, ensure that
these are placed in a filename later in the sort order than "perl.conf".

#
# This configuration file enables the default "Welcome"
# page if there is no default index page present for
# the root URL.  To disable the Welcome page, comment
# out all the lines below.
#
<LocationMatch "^/+$">
    Options -Indexes
    ErrorDocument 403 /error/noindex.html
</LocationMatch>

#
# This is the main Apache server configuration file.  It contains the
# configuration directives that give the server its instructions.
# See <URL:http://httpd.apache.org/docs/2.2/> for detailed information.
# In particular, see
# <URL:http://httpd.apache.org/docs/2.2/mod/directives.html>
# for a discussion of each configuration directive.
#
#
# Do NOT simply read the instructions in here without understanding
# what they do.  They're here only as hints or reminders.  If you are unsure
# consult the online docs. You have been warned.
#
# The configuration directives are grouped into three basic sections:
#  1. Directives that control the operation of the Apache server process as a
#     whole (the 'global environment').
#  2. Directives that define the parameters of the 'main' or 'default' server,
#     which responds to requests that aren't handled by a virtual host.
#     These directives also provide default values for the settings
#     of all virtual hosts.
#  3. Settings for virtual hosts, which allow Web requests to be sent to
#     different IP addresses or hostnames and have them handled by the
#     same Apache server process.
#
# Configuration and logfile names: If the filenames you specify for many
# of the server's control files begin with "/" (or "drive:/" for Win32), the
# server will use that explicit path.  If the filenames do *not* begin
# with "/", the value of ServerRoot is prepended -- so "logs/foo.log"
# with ServerRoot set to "/etc/httpd" will be interpreted by the
# server as "/etc/httpd/logs/foo.log".
#

### Section 1: Global Environment
#
# The directives in this section affect the overall operation of Apache,
# such as the number of concurrent requests it can handle or where it
# can find its configuration files.
#

#
# Don't give away too much information about all the subcomponents
# we are running.  Comment out this line if you don't mind remote sites
# finding out what major optional modules you are running
ServerTokens OS

#
# ServerRoot: The top of the directory tree under which the server's
# configuration, error, and log files are kept.
#
# NOTE!  If you intend to place this on an NFS (or otherwise network)
# mounted filesystem then please read the LockFile documentation
# (available at <URL:http://httpd.apache.org/docs/2.2/mod/mpm_common.html#lockfile>);
# you will save yourself a lot of trouble.
#
# Do NOT add a slash at the end of the directory path.
#
ServerRoot "/etc/httpd"

#
# PidFile: The file in which the server should record its process
# identification number when it starts.  Note the PIDFILE variable in
# /etc/sysconfig/httpd must be set appropriately if this location is
# changed.
#
PidFile run/httpd.pid

#
# Timeout: The number of seconds before receives and sends time out.
#
Timeout 60

#
# KeepAlive: Whether or not to allow persistent connections (more than
# one request per connection). Set to "Off" to deactivate.
#
KeepAlive Off

#
# MaxKeepAliveRequests: The maximum number of requests to allow
# during a persistent connection. Set to 0 to allow an unlimited amount.
# We recommend you leave this number high, for maximum performance.
#
MaxKeepAliveRequests 100

#
# KeepAliveTimeout: Number of seconds to wait for the next request from the
# same client on the same connection.
#
KeepAliveTimeout 15

##
## Server-Pool Size Regulation (MPM specific)
##

# prefork MPM
# StartServers: number of server processes to start
# MinSpareServers: minimum number of server processes which are kept spare
# MaxSpareServers: maximum number of server processes which are kept spare
# ServerLimit: maximum value for MaxClients for the lifetime of the server
# MaxClients: maximum number of server processes allowed to start
# MaxRequestsPerChild: maximum number of requests a server process serves
<IfModule prefork.c>
StartServers       8
MinSpareServers    5
MaxSpareServers   20
ServerLimit      256
MaxClients       256
MaxRequestsPerChild  4000
</IfModule>

# worker MPM
# StartServers: initial number of server processes to start
# MaxClients: maximum number of simultaneous client connections
# MinSpareThreads: minimum number of worker threads which are kept spare
# MaxSpareThreads: maximum number of worker threads which are kept spare
# ThreadsPerChild: constant number of worker threads in each server process
# MaxRequestsPerChild: maximum number of requests a server process serves
<IfModule worker.c>
StartServers         4
MaxClients         300
MinSpareThreads     25
MaxSpareThreads     75
ThreadsPerChild     25
MaxRequestsPerChild  0
</IfModule>

#
# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, in addition to the default. See also the <VirtualHost>
# directive.
#
# Change this to Listen on specific IP addresses as shown below to
# prevent Apache from glomming onto all bound IP addresses (0.0.0.0)
#
#Listen 12.34.56.78:80
Listen 80

#
# Dynamic Shared Object (DSO) Support
#
# To be able to use the functionality of a module which was built as a DSO you
# have to place corresponding `LoadModule' lines at this location so the
# directives contained in it are actually available _before_ they are used.
# Statically compiled modules (those listed by `httpd -l') do not need
# to be loaded here.
#
# Example:
# LoadModule foo_module modules/mod_foo.so
#
LoadModule auth_basic_module modules/mod_auth_basic.so
LoadModule auth_digest_module modules/mod_auth_digest.so
LoadModule authn_file_module modules/mod_authn_file.so
LoadModule authn_alias_module modules/mod_authn_alias.so
LoadModule authn_anon_module modules/mod_authn_anon.so
LoadModule authn_dbm_module modules/mod_authn_dbm.so
LoadModule authn_default_module modules/mod_authn_default.so
LoadModule authz_host_module modules/mod_authz_host.so
LoadModule authz_user_module modules/mod_authz_user.so
LoadModule authz_owner_module modules/mod_authz_owner.so
LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
LoadModule authz_dbm_module modules/mod_authz_dbm.so
LoadModule authz_default_module modules/mod_authz_default.so
LoadModule ldap_module modules/mod_ldap.so
LoadModule authnz_ldap_module modules/mod_authnz_ldap.so
LoadModule include_module modules/mod_include.so
LoadModule log_config_module modules/mod_log_config.so
LoadModule logio_module modules/mod_logio.so
LoadModule env_module modules/mod_env.so
LoadModule ext_filter_module modules/mod_ext_filter.so
LoadModule mime_magic_module modules/mod_mime_magic.so
LoadModule expires_module modules/mod_expires.so
LoadModule deflate_module modules/mod_deflate.so
LoadModule headers_module modules/mod_headers.so
LoadModule usertrack_module modules/mod_usertrack.so
LoadModule setenvif_module modules/mod_setenvif.so
LoadModule mime_module modules/mod_mime.so
LoadModule dav_module modules/mod_dav.so
LoadModule status_module modules/mod_status.so
LoadModule autoindex_module modules/mod_autoindex.so
LoadModule info_module modules/mod_info.so
LoadModule dav_fs_module modules/mod_dav_fs.so
LoadModule vhost_alias_module modules/mod_vhost_alias.so
LoadModule negotiation_module modules/mod_negotiation.so
LoadModule dir_module modules/mod_dir.so
LoadModule actions_module modules/mod_actions.so
LoadModule speling_module modules/mod_speling.so
LoadModule userdir_module modules/mod_userdir.so
LoadModule alias_module modules/mod_alias.so
LoadModule substitute_module modules/mod_substitute.so
LoadModule rewrite_module modules/mod_rewrite.so
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
LoadModule proxy_http_module modules/mod_proxy_http.so
LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
LoadModule proxy_connect_module modules/mod_proxy_connect.so
LoadModule cache_module modules/mod_cache.so
LoadModule suexec_module modules/mod_suexec.so
LoadModule disk_cache_module modules/mod_disk_cache.so
LoadModule cgi_module modules/mod_cgi.so
LoadModule version_module modules/mod_version.so

#
# The following modules are not loaded by default:
#
#LoadModule asis_module modules/mod_asis.so
#LoadModule authn_dbd_module modules/mod_authn_dbd.so
#LoadModule cern_meta_module modules/mod_cern_meta.so
#LoadModule cgid_module modules/mod_cgid.so
#LoadModule dbd_module modules/mod_dbd.so
#LoadModule dumpio_module modules/mod_dumpio.so
#LoadModule filter_module modules/mod_filter.so
#LoadModule ident_module modules/mod_ident.so
#LoadModule log_forensic_module modules/mod_log_forensic.so
#LoadModule unique_id_module modules/mod_unique_id.so
#

#
# Load config files from the config directory "/etc/httpd/conf.d".
#
Include conf.d/*.conf

#
# ExtendedStatus controls whether Apache will generate "full" status
# information (ExtendedStatus On) or just basic information (ExtendedStatus
# Off) when the "server-status" handler is called. The default is Off.
#
#ExtendedStatus On

#
# If you wish httpd to run as a different user or group, you must run
# httpd as root initially and it will switch.
#
# User/Group: The name (or #number) of the user/group to run httpd as.
#  . On SCO (ODT 3) use "User nouser" and "Group nogroup".
#  . On HPUX you may not be able to use shared memory as nobody, and the
#    suggested workaround is to create a user www and use that user.
#  NOTE that some kernels refuse to setgid(Group) or semctl(IPC_SET)
#  when the value of (unsigned)Group is above 60000;
#  don't use Group #-1 on these systems!
#
User apache
Group apache

### Section 2: 'Main' server configuration
#
# The directives in this section set up the values used by the 'main'
# server, which responds to any requests that aren't handled by a
# <VirtualHost> definition.  These values also provide defaults for
# any <VirtualHost> containers you may define later in the file.
#
# All of these directives may appear inside <VirtualHost> containers,
# in which case these default settings will be overridden for the
# virtual host being defined.
#

#
# ServerAdmin: Your address, where problems with the server should be
# e-mailed.  This address appears on some server-generated pages, such
# as error documents.  e.g. [email protected]
#
ServerAdmin root@localhost

#
# ServerName gives the name and port that the server uses to identify itself.
# This can often be determined automatically, but we recommend you specify
# it explicitly to prevent problems during startup.
#
# If this is not set to valid DNS name for your host, server-generated
# redirections will not work.  See also the UseCanonicalName directive.
#
# If your host doesn't have a registered DNS name, enter its IP address here.
# You will have to access it by its address anyway, and this will make
# redirections work in a sensible way.
#
#ServerName www.example.com:80

#
# UseCanonicalName: Determines how Apache constructs self-referencing
# URLs and the SERVER_NAME and SERVER_PORT variables.
# When set "Off", Apache will use the Hostname and Port supplied
# by the client.  When set "On", Apache will use the value of the
# ServerName directive.
#
UseCanonicalName Off

#
# DocumentRoot: The directory out of which you will serve your
# documents. By default, all requests are taken from this directory, but
# symbolic links and aliases may be used to point to other locations.
#
DocumentRoot "/var/www/html"

#
# Each directory to which Apache has access can be configured with respect
# to which services and features are allowed and/or disabled in that
# directory (and its subdirectories).
#
# First, we configure the "default" to be a very restrictive set of
# features.
#
<Directory />
    Options FollowSymLinks
    AllowOverride None
</Directory>

#
# Note that from this point forward you must specifically allow
# particular features to be enabled - so if something's not working as
# you might expect, make sure that you have specifically enabled it
# below.
#

#
# This should be changed to whatever you set DocumentRoot to.
#
<Directory "/var/www/html">

#
# Possible values for the Options directive are "None", "All",
# or any combination of:
#   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
# The Options directive is both complicated and important.  Please see
# http://httpd.apache.org/docs/2.2/mod/core.html#options
# for more information.
#
    Options Indexes FollowSymLinks

#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
#   Options FileInfo AuthConfig Limit
#
    AllowOverride None

#
# Controls who can get stuff from this server.
#
    Order allow,deny
    Allow from all

</Directory>

#
# UserDir: The name of the directory that is appended onto a user's home
# directory if a ~user request is received.
#
# The path to the end user account 'public_html' directory must be
# accessible to the webserver userid.  This usually means that ~userid
# must have permissions of 711, ~userid/public_html must have permissions
# of 755, and documents contained therein must be world-readable.
# Otherwise, the client will only receive a "403 Forbidden" message.
#
# See also: http://httpd.apache.org/docs/misc/FAQ.html#forbidden
#
<IfModule mod_userdir.c>
    #
    # UserDir is disabled by default since it can confirm the presence
    # of a username on the system (depending on home directory
    # permissions).
    #
    UserDir disabled

    #
    # To enable requests to /~user/ to serve the user's public_html
    # directory, remove the "UserDir disabled" line above, and uncomment
    # the following line instead:
    #
    #UserDir public_html

</IfModule>

#
# Control access to UserDir directories.  The following is an example
# for a site where these directories are restricted to read-only.
#
#<Directory /home/*/public_html>
#    AllowOverride FileInfo AuthConfig Limit
#    Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
#    <Limit GET POST OPTIONS>
#        Order allow,deny
#        Allow from all
#    </Limit>
#    <LimitExcept GET POST OPTIONS>
#        Order deny,allow
#        Deny from all
#    </LimitExcept>
#</Directory>

#
# DirectoryIndex: sets the file that Apache will serve if a directory
# is requested.
#
# The index.html.var file (a type-map) is used to deliver content-
# negotiated documents.  The MultiViews Option can be used for the
# same purpose, but it is much slower.
#
DirectoryIndex index.html index.html.var

#
# AccessFileName: The name of the file to look for in each directory
# for additional configuration directives.  See also the AllowOverride
# directive.
#
AccessFileName .htaccess

#
# The following lines prevent .htaccess and .htpasswd files from being
# viewed by Web clients.
#
<Files ~ "^\.ht">
    Order allow,deny
    Deny from all
    Satisfy All
</Files>

#
# TypesConfig describes where the mime.types file (or equivalent) is
# to be found.
#
TypesConfig /etc/mime.types

#
# DefaultType is the default MIME type the server will use for a document
# if it cannot otherwise determine one, such as from filename extensions.
# If your server contains mostly text or HTML documents, "text/plain" is
# a good value.  If most of your content is binary, such as applications
# or images, you may want to use "application/octet-stream" instead to
# keep browsers from trying to display binary files as though they are
# text.
#
DefaultType text/plain

#
# The mod_mime_magic module allows the server to use various hints from the
# contents of the file itself to determine its type.  The MIMEMagicFile
# directive tells the module where the hint definitions are located.
#
<IfModule mod_mime_magic.c>
#   MIMEMagicFile /usr/share/magic.mime
    MIMEMagicFile conf/magic
</IfModule>

#
# HostnameLookups: Log the names of clients or just their IP addresses
# e.g., www.apache.org (on) or 204.62.129.132 (off).
# The default is off because it'd be overall better for the net if people
# had to knowingly turn this feature on, since enabling it means that
# each client request will result in AT LEAST one lookup request to the
# nameserver.
#
HostnameLookups Off

#
# EnableMMAP: Control whether memory-mapping is used to deliver
# files (assuming that the underlying OS supports it).
# The default is on; turn this off if you serve from NFS-mounted
# filesystems.  On some systems, turning it off (regardless of
# filesystem) can improve performance; for details, please see
# http://httpd.apache.org/docs/2.2/mod/core.html#enablemmap
#
#EnableMMAP off

#
# EnableSendfile: Control whether the sendfile kernel support is
# used to deliver files (assuming that the OS supports it).
# The default is on; turn this off if you serve from NFS-mounted
# filesystems.  Please see
# http://httpd.apache.org/docs/2.2/mod/core.html#enablesendfile
#
#EnableSendfile off

#
# ErrorLog: The location of the error log file.
# If you do not specify an ErrorLog directive within a <VirtualHost>
# container, error messages relating to that virtual host will be
# logged here.  If you *do* define an error logfile for a <VirtualHost>
# container, that host's errors will be logged there and not here.
#
ErrorLog logs/error_log

#
# LogLevel: Control the number of messages logged to the error_log.
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
#
LogLevel warn

#
# The following directives define some format nicknames for use with
# a CustomLog directive (see below).
#
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent

# "combinedio" includes actual counts of actual bytes received (%I) and sent (%O); this
# requires the mod_logio module to be loaded.
#LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio

#
# The location and format of the access logfile (Common Logfile Format).
# If you do not define any access logfiles within a <VirtualHost>
# container, they will be logged here.  Contrariwise, if you *do*
# define per-<VirtualHost> access logfiles, transactions will be
# logged therein and *not* in this file.
#
#CustomLog logs/access_log common

#
# If you would like to have separate agent and referer logfiles, uncomment
# the following directives.
#
#CustomLog logs/referer_log referer
#CustomLog logs/agent_log agent

#
# For a single logfile with access, agent, and referer information
# (Combined Logfile Format), use the following directive:
#
CustomLog logs/access_log combined

#
# Optionally add a line containing the server version and virtual host
# name to server-generated pages (internal error documents, FTP directory
# listings, mod_status and mod_info output etc., but not CGI generated
# documents or custom error documents).
# Set to "EMail" to also include a mailto: link to the ServerAdmin.
# Set to one of:  On | Off | EMail
#
ServerSignature On

#
# Aliases: Add here as many aliases as you need (with no limit). The format is
# Alias fakename realname
#
# Note that if you include a trailing / on fakename then the server will
# require it to be present in the URL.  So "/icons" isn't aliased in this
# example, only "/icons/".  If the fakename is slash-terminated, then the
# realname must also be slash terminated, and if the fakename omits the
# trailing slash, the realname must also omit it.
#
# We include the /icons/ alias for FancyIndexed directory listings.  If you
# do not use FancyIndexing, you may comment this out.
#
Alias /icons/ "/var/www/icons/"

<Directory "/var/www/icons">
    Options Indexes MultiViews FollowSymLinks
    AllowOverride None
    Order allow,deny
    Allow from all
</Directory>

#
# WebDAV module configuration section.
#
<IfModule mod_dav_fs.c>
    # Location of the WebDAV lock database.
    DAVLockDB /var/lib/dav/lockdb
</IfModule>

#
# ScriptAlias: This controls which directories contain server scripts.
# ScriptAliases are essentially the same as Aliases, except that
# documents in the realname directory are treated as applications and
# run by the server when requested rather than as documents sent to the client.
# The same rules about trailing "/" apply to ScriptAlias directives as to
# Alias.
#
ScriptAlias /cgi-bin/ "/var/www/cgi-bin/"

#
# "/var/www/cgi-bin" should be changed to whatever your ScriptAliased
# CGI directory exists, if you have that configured.
#
<Directory "/var/www/cgi-bin">
    AllowOverride None
    Options None
    Order allow,deny
    Allow from all
</Directory>

#
# Redirect allows you to tell clients about documents which used to exist in
# your server's namespace, but do not anymore. This allows you to tell the
# clients where to look for the relocated document.
# Example:
# Redirect permanent /foo http://www.example.com/bar

#
# Directives controlling the display of server-generated directory listings.
#

#
# IndexOptions: Controls the appearance of server-generated directory
# listings.
#
IndexOptions FancyIndexing VersionSort NameWidth=* HTMLTable Charset=UTF-8

#
# AddIcon* directives tell the server which icon to show for different
# files or filename extensions.  These are only displayed for
# FancyIndexed directories.
#
AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip

AddIconByType (TXT,/icons/text.gif) text/*
AddIconByType (IMG,/icons/image2.gif) image/*
AddIconByType (SND,/icons/sound2.gif) audio/*
AddIconByType (VID,/icons/movie.gif) video/*

AddIcon /icons/binary.gif .bin .exe
AddIcon /icons/binhex.gif .hqx
AddIcon /icons/tar.gif .tar
AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
AddIcon /icons/a.gif .ps .ai .eps
AddIcon /icons/layout.gif .html .shtml .htm .pdf
AddIcon /icons/text.gif .txt
AddIcon /icons/c.gif .c
AddIcon /icons/p.gif .pl .py
AddIcon /icons/f.gif .for
AddIcon /icons/dvi.gif .dvi
AddIcon /icons/uuencoded.gif .uu
AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
AddIcon /icons/tex.gif .tex
AddIcon /icons/bomb.gif /core

AddIcon /icons/back.gif ..
AddIcon /icons/hand.right.gif README
AddIcon /icons/folder.gif ^^DIRECTORY^^
AddIcon /icons/blank.gif ^^BLANKICON^^

#
# DefaultIcon is which icon to show for files which do not have an icon
# explicitly set.
#
DefaultIcon /icons/unknown.gif

#
# AddDescription allows you to place a short description after a file in
# server-generated indexes.  These are only displayed for FancyIndexed
# directories.
# Format: AddDescription "description" filename
#
#AddDescription "GZIP compressed document" .gz
#AddDescription "tar archive" .tar
#AddDescription "GZIP compressed tar archive" .tgz

#
# ReadmeName is the name of the README file the server will look for by
# default, and append to directory listings.
#
# HeaderName is the name of a file which should be prepended to
# directory indexes.
ReadmeName README.html
HeaderName HEADER.html

#
# IndexIgnore is a set of filenames which directory indexing should ignore
# and not include in the listing.  Shell-style wildcarding is permitted.
#
IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t

#
# DefaultLanguage and AddLanguage allows you to specify the language of
# a document. You can then use content negotiation to give a browser a
# file in a language the user can understand.
#
# Specify a default language. This means that all data
# going out without a specific language tag (see below) will
# be marked with this one. You probably do NOT want to set
# this unless you are sure it is correct for all cases.
#
# * It is generally better to not mark a page as
# * being a certain language than marking it with the wrong
# * language!
#
# DefaultLanguage nl
#
# Note 1: The suffix does not have to be the same as the language
# keyword --- those with documents in Polish (whose net-standard
# language code is pl) may wish to use "AddLanguage pl .po" to
# avoid the ambiguity with the common suffix for perl scripts.
#
# Note 2: The example entries below illustrate that in some cases
# the two character 'Language' abbreviation is not identical to
# the two character 'Country' code for its country,
# E.g. 'Danmark/dk' versus 'Danish/da'.
#
# Note 3: In the case of 'ltz' we violate the RFC by using a three char
# specifier. There is 'work in progress' to fix this and get
# the reference data for rfc1766 cleaned up.
#
# Catalan (ca) - Croatian (hr) - Czech (cs) - Danish (da) - Dutch (nl)
# English (en) - Esperanto (eo) - Estonian (et) - French (fr) - German (de)
# Greek-Modern (el) - Hebrew (he) - Italian (it) - Japanese (ja)
# Korean (ko) - Luxembourgeois* (ltz) - Norwegian Nynorsk (nn)
# Norwegian (no) - Polish (pl) - Portugese (pt)
# Brazilian Portuguese (pt-BR) - Russian (ru) - Swedish (sv)
# Simplified Chinese (zh-CN) - Spanish (es) - Traditional Chinese (zh-TW)
#
AddLanguage ca .ca
AddLanguage cs .cz .cs
AddLanguage da .dk
AddLanguage de .de
AddLanguage el .el
AddLanguage en .en
AddLanguage eo .eo
AddLanguage es .es
AddLanguage et .et
AddLanguage fr .fr
AddLanguage he .he
AddLanguage hr .hr
AddLanguage it .it
AddLanguage ja .ja
AddLanguage ko .ko
AddLanguage ltz .ltz
AddLanguage nl .nl
AddLanguage nn .nn
AddLanguage no .no
AddLanguage pl .po
AddLanguage pt .pt
AddLanguage pt-BR .pt-br
AddLanguage ru .ru
AddLanguage sv .sv
AddLanguage zh-CN .zh-cn
AddLanguage zh-TW .zh-tw

#
# LanguagePriority allows you to give precedence to some languages
# in case of a tie during content negotiation.
#
# Just list the languages in decreasing order of preference. We have
# more or less alphabetized them here. You probably want to change this.
#
LanguagePriority en ca cs da de el eo es et fr he hr it ja ko ltz nl nn no pl pt pt-BR ru sv zh-CN zh-TW

#
# ForceLanguagePriority allows you to serve a result page rather than
# MULTIPLE CHOICES (Prefer) [in case of a tie] or NOT ACCEPTABLE (Fallback)
# [in case no accepted languages matched the available variants]
#
ForceLanguagePriority Prefer Fallback

#
# Specify a default charset for all content served; this enables
# interpretation of all content as UTF-8 by default.  To use the
# default browser choice (ISO-8859-1), or to allow the META tags
# in HTML content to override this choice, comment out this
# directive:
#
AddDefaultCharset UTF-8

#
# AddType allows you to add to or override the MIME configuration
# file mime.types for specific file types.
#
#AddType application/x-tar .tgz

#
# AddEncoding allows you to have certain browsers uncompress
# information on the fly. Note: Not all browsers support this.
# Despite the name similarity, the following Add* directives have nothing
# to do with the FancyIndexing customization directives above.
#
#AddEncoding x-compress .Z
#AddEncoding x-gzip .gz .tgz

# If the AddEncoding directives above are commented-out, then you
# probably should define those extensions to indicate media types:
#
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz

#
#   MIME-types for downloading Certificates and CRLs
#
AddType application/x-x509-ca-cert .crt
AddType application/x-pkcs7-crl    .crl

#
# AddHandler allows you to map certain file extensions to "handlers":
# actions unrelated to filetype. These can be either built into the server
# or added with the Action directive (see below)
#
# To use CGI scripts outside of ScriptAliased directories:
# (You will also need to add "ExecCGI" to the "Options" directive.)
#
#AddHandler cgi-script .cgi

#
# For files that include their own HTTP headers:
#
#AddHandler send-as-is asis

#
# For type maps (negotiated resources):
# (This is enabled by default to allow the Apache "It Worked" page
#  to be distributed in multiple languages.)
#
AddHandler type-map var

#
# Filters allow you to process content before it is sent to the client.
#
# To parse .shtml files for server-side includes (SSI):
# (You will also need to add "Includes" to the "Options" directive.)
#
AddType text/html .shtml
AddOutputFilter INCLUDES .shtml

#
# Action lets you define media types that will execute a script whenever
# a matching file is called. This eliminates the need for repeated URL
# pathnames for oft-used CGI file processors.
# Format: Action media/type /cgi-script/location
# Format: Action handler-name /cgi-script/location
#

#
# Customizable error responses come in three flavors:
# 1) plain text 2) local redirects 3) external redirects
#
# Some examples:
#ErrorDocument 500 "The server made a boo boo."
#ErrorDocument 404 /missing.html
#ErrorDocument 404 "/cgi-bin/missing_handler.pl"
#ErrorDocument 402 http://www.example.com/subscription_info.html
#

#
# Putting this all together, we can internationalize error responses.
#
# We use Alias to redirect any /error/HTTP_<error>.html.var response to
# our collection of by-error message multi-language collections.  We use
# includes to substitute the appropriate text.
#
# You can modify the messages' appearance without changing any of the
# default HTTP_<error>.html.var files by adding the line:
#
#   Alias /error/include/ "/your/include/path/"
#
# which allows you to create your own set of files by starting with the
# /var/www/error/include/ files and
# copying them to /your/include/path/, even on a per-VirtualHost basis.
#

Alias /error/ "/var/www/error/"

<IfModule mod_negotiation.c>
<IfModule mod_include.c>
    <Directory "/var/www/error">
        AllowOverride None
        Options IncludesNoExec
        AddOutputFilter Includes html
        AddHandler type-map var
        Order allow,deny
        Allow from all
        LanguagePriority en es de fr
        ForceLanguagePriority Prefer Fallback
    </Directory>

#    ErrorDocument 400 /error/HTTP_BAD_REQUEST.html.var
#    ErrorDocument 401 /error/HTTP_UNAUTHORIZED.html.var
#    ErrorDocument 403 /error/HTTP_FORBIDDEN.html.var
#    ErrorDocument 404 /error/HTTP_NOT_FOUND.html.var
#    ErrorDocument 405 /error/HTTP_METHOD_NOT_ALLOWED.html.var
#    ErrorDocument 408 /error/HTTP_REQUEST_TIME_OUT.html.var
#    ErrorDocument 410 /error/HTTP_GONE.html.var
#    ErrorDocument 411 /error/HTTP_LENGTH_REQUIRED.html.var
#    ErrorDocument 412 /error/HTTP_PRECONDITION_FAILED.html.var
#    ErrorDocument 413 /error/HTTP_REQUEST_ENTITY_TOO_LARGE.html.var
#    ErrorDocument 414 /error/HTTP_REQUEST_URI_TOO_LARGE.html.var
#    ErrorDocument 415 /error/HTTP_UNSUPPORTED_MEDIA_TYPE.html.var
#    ErrorDocument 500 /error/HTTP_INTERNAL_SERVER_ERROR.html.var
#    ErrorDocument 501 /error/HTTP_NOT_IMPLEMENTED.html.var
#    ErrorDocument 502 /error/HTTP_BAD_GATEWAY.html.var
#    ErrorDocument 503 /error/HTTP_SERVICE_UNAVAILABLE.html.var
#    ErrorDocument 506 /error/HTTP_VARIANT_ALSO_VARIES.html.var

</IfModule>
</IfModule>

#
# The following directives modify normal HTTP response behavior to
# handle known problems with browser implementations.
#
BrowserMatch "Mozilla/2" nokeepalive
BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0
BrowserMatch "RealPlayer 4\.0" force-response-1.0
BrowserMatch "Java/1\.0" force-response-1.0
BrowserMatch "JDK/1\.0" force-response-1.0

#
# The following directive disables redirects on non-GET requests for
# a directory that does not include the trailing slash.  This fixes a
# problem with Microsoft WebFolders which does not appropriately handle
# redirects for folders with DAV methods.
# Same deal with Apple's DAV filesystem and Gnome VFS support for DAV.
#
BrowserMatch "Microsoft Data Access Internet Publishing Provider" redirect-carefully
BrowserMatch "MS FrontPage" redirect-carefully
BrowserMatch "^WebDrive" redirect-carefully
BrowserMatch "^WebDAVFS/1.[0123]" redirect-carefully
BrowserMatch "^gnome-vfs/1.0" redirect-carefully
BrowserMatch "^XML Spy" redirect-carefully
BrowserMatch "^Dreamweaver-WebDAV-SCM1" redirect-carefully

#
# Allow server status reports generated by mod_status,
# with the URL of http://servername/server-status
# Change the ".example.com" to match your domain to enable.
#
#<Location /server-status>
#    SetHandler server-status
#    Order deny,allow
#    Deny from all
#    Allow from .example.com
#</Location>

#
# Allow remote server configuration reports, with the URL of
#  http://servername/server-info (requires that mod_info.c be loaded).
# Change the ".example.com" to match your domain to enable.
#
#<Location /server-info>
#    SetHandler server-info
#    Order deny,allow
#    Deny from all
#    Allow from .example.com
#</Location>

#
# Proxy Server directives. Uncomment the following lines to
# enable the proxy server:
#
#<IfModule mod_proxy.c>
#ProxyRequests On
#
#<Proxy *>
#    Order deny,allow
#    Deny from all
#    Allow from .example.com
#</Proxy>

#
# Enable/disable the handling of HTTP/1.1 "Via:" headers.
# ("Full" adds the server version; "Block" removes all outgoing Via: headers)
# Set to one of: Off | On | Full | Block
#
#ProxyVia On

#
# To enable a cache of proxied content, uncomment the following lines.
# See http://httpd.apache.org/docs/2.2/mod/mod_cache.html for more details.
#
#<IfModule mod_disk_cache.c>
#   CacheEnable disk /
#   CacheRoot "/var/cache/mod_proxy"
#</IfModule>
#

#</IfModule>
# End of proxy directives.

### Section 3: Virtual Hosts
#
# VirtualHost: If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most configurations
# use only name-based virtual hosts so the server doesn't need to worry about
# IP addresses. This is indicated by the asterisks in the directives below.
#
# Please see the documentation at
# <URL:http://httpd.apache.org/docs/2.2/vhosts/>
# for further details before you try to setup virtual hosts.
#
# You may use the command line option '-S' to verify your virtual host
# configuration.

#
# Use name-based virtual hosting.
#
#NameVirtualHost *:80
#
# NOTE: NameVirtualHost cannot be used without a port specifier
# (e.g. :80) if mod_ssl is being used, due to the nature of the
# SSL protocol.
#

#
# VirtualHost example:
# Almost any Apache directive may go into a VirtualHost container.
# The first VirtualHost section is used for requests without a known
# server name.
#
#<VirtualHost *:80>
#    ServerAdmin [email protected]
#    DocumentRoot /www/docs/dummy-host.example.com
#    ServerName dummy-host.example.com
#    ErrorLog logs/dummy-host.example.com-error_log
#    CustomLog logs/dummy-host.example.com-access_log common
#</VirtualHost>
2 of XI5.6.14 Prod/DR/DEV - Nagios LogServer 2 Nodes
See my projects on the Exchange at BanditBBS - Also check out my Nagios stuff on my personal page at Bandit's Home and at github
User avatar
BanditBBS
Posts: 2474
Joined: Tue May 31, 2011 12:57 pm
Location: Scio, OH
Contact:

Re: 500 Server error

Post by BanditBBS »

Code: Select all

[code][root@iss-chi-nag07 ~]# ls -lR /var/www/html
/var/www/html:
total 8
-rw-r--r-- 1 root root  122 May 14  2015 index.php
drwxr-xr-x 5 root root 4096 May 14  2015 nagioslogserver

/var/www/html/nagioslogserver:
total 16
drwxr-xr-x 17 root root 4096 Jul 16  2015 application
-rw-r--r--  1 root root   12 Jan 14 15:53 lsversion
drwxr-xr-x  8 root root 4096 May 14  2015 system
drwxr-xr-x  9 root root 4096 Jan 15 11:07 www

/var/www/html/nagioslogserver/application:
total 60
drwxrwxr-x  3 root apache 4096 Dec 22 08:36 cache
drwxrwxr-x  2 root apache 4096 Jan 14 15:53 config
drwxr-xr-x  3 root root   4096 May 14  2015 controllers
drwxr-xr-x  2 root root   4096 May 14  2015 core
drwxrwxr-x  2 root apache 4096 Jan 14 15:53 dashboards
drwxr-xr-x  2 root root   4096 May 14  2015 errors
drwxr-xr-x  2 root root   4096 Jul 16  2015 helpers
drwxr-xr-x  2 root root   4096 Dec 22 08:36 hooks
drwxr-xr-x 23 root root   4096 Jul 16  2015 language
drwxr-xr-x  3 root root   4096 Jul 16  2015 libraries
drwxrwxr-x  2 root apache 4096 Jul 16  2015 logs
drwxr-xr-x  2 root root   4096 May 14  2015 models
drwxr-xr-x  2 root root   4096 Jan 14 15:53 queries
drwxr-xr-x  3 root root   4096 May 14  2015 third_party
drwxr-xr-x 11 root root   4096 May 14  2015 views

/var/www/html/nagioslogserver/application/cache:
total 4
-rw-rwxr-- 1 apache apache    0 May 14  2015 installed
drwxrwxr-x 2 apache apache 4096 Jan 14 14:54 magpie_cache

/var/www/html/nagioslogserver/application/cache/magpie_cache:
total 16
-rw-rwxr-- 1 apache apache 1180 Jan 14 14:54 1076670fb2a2c9674a27f879d550f70a
-rw-rwxr-- 1 apache apache 1129 Nov  5 09:47 602569f5cb0a6bc67a3bfa2c888b5630
-rw-rwxr-- 1 apache apache 1119 Dec 14 09:43 69042dcf329f467a5fa285d4ab4382c6
-rw-rwxr-- 1 apache apache 3745 Dec 14 08:27 9c0b92f57ccbc1aee90bd8ad8eec6c3f

/var/www/html/nagioslogserver/application/config:
total 88
-rw-rwxr-- 1 root apache  3337 Jan 14 15:53 autoload.php
-rw-rwxr-- 1 root apache  1198 Jan 14 15:53 config.local.php
-rw-rwxr-- 1 root apache 14232 Jan 14 15:53 config.php
-rw-rwxr-- 1 root apache  1828 Jan 14 15:53 constants.php
-rw-rwxr-- 1 root apache  3551 Jan 14 15:53 database.php
-rw-rwxr-- 1 root apache  1138 Jan 14 15:53 doctypes.php
-rw-rwxr-- 1 root apache   162 Jan 14 15:53 elasticsearch.php
-rw-rwxr-- 1 root apache    99 Jan 14 15:53 email.php
-rw-rwxr-- 1 root apache  1781 Jan 14 15:53 foreign_chars.php
-rw-rwxr-- 1 root apache   498 Jan 14 15:53 hooks.php
-rw-rwxr-- 1 root apache  1323 Jan 14 15:53 migration.php
-rw-rwxr-- 1 root apache  4401 Jan 14 15:53 mimes.php
-rw-rwxr-- 1 root apache   852 Jan 14 15:53 pagination.php
-rw-rwxr-- 1 root apache   564 Jan 14 15:53 profiler.php
-rw-rwxr-- 1 root apache  1628 Jan 14 15:53 routes.php
-rw-rwxr-- 1 root apache  3295 Jan 14 15:53 smileys.php
-rw-rwxr-- 1 root apache  5589 Jan 14 15:53 user_agents.php

/var/www/html/nagioslogserver/application/controllers:
total 936
-rw-r--r-- 1 root root 533748 Jan 14 15:53 admin.php
-rw-r--r-- 1 root root   5664 Jan 14 15:53 alerts.php
drwxr-xr-x 2 root root   4096 May 14  2015 api
-rw-r--r-- 1 root root 101100 Jan 14 15:53 auth.php
-rw-r--r-- 1 root root 140756 Jan 14 15:53 configure.php
-rw-r--r-- 1 root root   4122 Jan 14 15:53 dashboard.php
-rw-r--r-- 1 root root    936 Jan 14 15:53 help.php
-rw-r--r-- 1 root root 112980 Jan 14 15:53 install.php
-rw-r--r-- 1 root root   1411 Jan 14 15:53 jobs.php
-rw-r--r-- 1 root root   1563 Jan 14 15:53 poller.php
-rw-r--r-- 1 root root   1749 Jan 14 15:53 reports.php
-rw-r--r-- 1 root root   9025 Jan 14 15:53 source.php
-rw-r--r-- 1 root root  11552 Jan 14 15:53 trial.php

/var/www/html/nagioslogserver/application/controllers/api:
total 364
-rw-r--r-- 1 root root  48084 Jan 14 15:53 api_controller.php
-rw-r--r-- 1 root root  25036 Jan 14 15:53 backend.php
-rw-r--r-- 1 root root 152000 Jan 14 15:53 check.php
-rw-r--r-- 1 root root   9196 Jan 14 15:53 log.php
-rw-r--r-- 1 root root  89964 Jan 14 15:53 system.php
-rw-r--r-- 1 root root  35244 Jan 14 15:53 user.php

/var/www/html/nagioslogserver/application/core:
total 52
-rw-r--r-- 1 root root   385 Jan 14 15:53 LS_Config.php
-rw-r--r-- 1 root root 46080 Jan 14 15:53 LS_Controller.php

/var/www/html/nagioslogserver/application/dashboards:
total 4
-rw-rwxr-- 1 root apache 68 Jan 14 15:53 README.txt

/var/www/html/nagioslogserver/application/errors:
total 16
-rw-r--r-- 1 root root 1160 Jan 14 15:53 error_404.php
-rw-r--r-- 1 root root 1156 Jan 14 15:53 error_db.php
-rw-r--r-- 1 root root 1147 Jan 14 15:53 error_general.php
-rw-r--r-- 1 root root  288 Jan 14 15:53 error_php.php

/var/www/html/nagioslogserver/application/helpers:
total 496
-rw-r--r-- 1 root root   4675 Jan 14 15:53 alert_helper.php
-rw-r--r-- 1 root root    864 Jan 14 15:53 auth_checks_helper.php
-rw-r--r-- 1 root root  13557 Jan 14 15:53 cmdsubsys_helper.php
-rw-r--r-- 1 root root  12852 Jan 14 15:53 config_helper.php
-rw-r--r-- 1 root root    887 Jan 14 15:53 dashlet_helper.php
-rw-r--r-- 1 root root   1909 Jan 14 15:53 data_helper.php
-rw-r--r-- 1 root root   2500 Jan 14 15:53 input_helper.php
-rw-r--r-- 1 root root   2047 Jan 14 15:53 lang_helper.php
-rw-r--r-- 1 root root  12602 Jan 14 15:53 ldap_ad_helper.php
-rw-r--r-- 1 root root 407296 Jan 14 15:53 licensing_helper.php
-rw-r--r-- 1 root root   2517 Jan 14 15:53 numbers_helper.php
-rw-r--r-- 1 root root   3169 Jan 14 15:53 poller_helper.php
-rw-r--r-- 1 root root   7862 Jan 14 15:53 timezone_helper.php
-rw-r--r-- 1 root root    231 Jan 14 15:53 tooltip_helper.php

/var/www/html/nagioslogserver/application/hooks:
total 0

/var/www/html/nagioslogserver/application/language:
total 372
drwxr-xr-x 3 root root   4096 Jul 16  2015 de_DE
-rw-r--r-- 1 root root      0 Jan 14 15:53 default.mo
-rw-r--r-- 1 root root 291563 Jan 14 15:53 default.pot
drwxr-xr-x 2 root root   4096 May 14  2015 english
drwxr-xr-x 3 root root   4096 Jul 16  2015 en_US
drwxr-xr-x 3 root root   4096 Jul 16  2015 es_ES
drwxr-xr-x 2 root root   4096 May 14  2015 french
drwxr-xr-x 3 root root   4096 Jul 16  2015 fr_FR
drwxr-xr-x 2 root root   4096 May 14  2015 german
drwxr-xr-x 2 root root   4096 May 14  2015 italian
drwxr-xr-x 3 root root   4096 Jul 16  2015 it_IT
drwxr-xr-x 3 root root   4096 Jul 16  2015 ja_JP
drwxr-xr-x 2 root root   4096 May 14  2015 japanese
drwxr-xr-x 3 root root   4096 Jul 16  2015 ko_KR
drwxr-xr-x 2 root root   4096 May 14  2015 korean
drwxr-xr-x 3 root root   4096 Jul 16  2015 pl_PL
drwxr-xr-x 2 root root   4096 May 14  2015 portuguese
drwxr-xr-x 3 root root   4096 Jul 16  2015 pt_PT
drwxr-xr-x 3 root root   4096 Jul 16  2015 ru_RU
drwxr-xr-x 2 root root   4096 May 14  2015 russian
drwxr-xr-x 2 root root   4096 May 14  2015 spanish
drwxr-xr-x 3 root root   4096 Jul 16  2015 zh_CN
drwxr-xr-x 3 root root   4096 Jul 16  2015 zh_TW

/var/www/html/nagioslogserver/application/language/de_DE:
total 4
drwxr-xr-x 2 root root 4096 Jul 16  2015 LC_MESSAGES

/var/www/html/nagioslogserver/application/language/de_DE/LC_MESSAGES:
total 544
-rw-r--r-- 1 root root 172675 Jan 14 15:53 de_DE.mo
-rw-r--r-- 1 root root 380330 Jan 14 15:53 de_DE.po

/var/www/html/nagioslogserver/application/language/english:
total 4
-rw-r--r-- 1 root root 447 May 14  2015 main_lang.php

/var/www/html/nagioslogserver/application/language/en_US:
total 4
drwxr-xr-x 2 root root 4096 Jul 16  2015 LC_MESSAGES

/var/www/html/nagioslogserver/application/language/en_US/LC_MESSAGES:
total 292
-rw-r--r-- 1 root root    349 Jan 14 15:53 en_US.mo
-rw-r--r-- 1 root root 291591 Jan 14 15:53 en_US.po

/var/www/html/nagioslogserver/application/language/es_ES:
total 4
drwxr-xr-x 2 root root 4096 Jul 16  2015 LC_MESSAGES

/var/www/html/nagioslogserver/application/language/es_ES/LC_MESSAGES:
total 648
-rw-r--r-- 1 root root 177247 Jan 14 15:53 es_ES.mo
-rw-r--r-- 1 root root 480254 Jan 14 15:53 es_ES.po

/var/www/html/nagioslogserver/application/language/french:
total 4
-rw-r--r-- 1 root root 48 May 14  2015 main_lang.php

/var/www/html/nagioslogserver/application/language/fr_FR:
total 4
drwxr-xr-x 2 root root 4096 Jul 16  2015 LC_MESSAGES

/var/www/html/nagioslogserver/application/language/fr_FR/LC_MESSAGES:
total 556
-rw-r--r-- 1 root root 179655 Jan 14 15:53 fr_FR.mo
-rw-r--r-- 1 root root 387593 Jan 14 15:53 fr_FR.po

/var/www/html/nagioslogserver/application/language/german:
total 4
-rw-r--r-- 1 root root 48 May 14  2015 main_lang.php

/var/www/html/nagioslogserver/application/language/italian:
total 4
-rw-r--r-- 1 root root 48 May 14  2015 main_lang.php

/var/www/html/nagioslogserver/application/language/it_IT:
total 4
drwxr-xr-x 2 root root 4096 Jul 16  2015 LC_MESSAGES

/var/www/html/nagioslogserver/application/language/it_IT/LC_MESSAGES:
total 544
-rw-r--r-- 1 root root 172651 Jan 14 15:53 it_IT.mo
-rw-r--r-- 1 root root 380246 Jan 14 15:53 it_IT.po

/var/www/html/nagioslogserver/application/language/ja_JP:
total 4
drwxr-xr-x 2 root root 4096 Jul 16  2015 LC_MESSAGES

/var/www/html/nagioslogserver/application/language/ja_JP/LC_MESSAGES:
total 552
-rw-r--r-- 1 root root 183345 Jan 14 15:53 ja_JP.mo
-rw-r--r-- 1 root root 379626 Jan 14 15:53 ja_JP.po

/var/www/html/nagioslogserver/application/language/japanese:
total 4
-rw-r--r-- 1 root root 48 May 14  2015 main_lang.php

/var/www/html/nagioslogserver/application/language/ko_KR:
total 4
drwxr-xr-x 2 root root 4096 Jul 16  2015 LC_MESSAGES

/var/www/html/nagioslogserver/application/language/ko_KR/LC_MESSAGES:
total 552
-rw-r--r-- 1 root root 176979 Jan 14 15:53 ko_KR.mo
-rw-r--r-- 1 root root 383310 Jan 14 15:53 ko_KR.po

/var/www/html/nagioslogserver/application/language/korean:
total 4
-rw-r--r-- 1 root root 48 May 14  2015 main_lang.php

/var/www/html/nagioslogserver/application/language/pl_PL:
total 4
drwxr-xr-x 2 root root 4096 Jul 16  2015 LC_MESSAGES

/var/www/html/nagioslogserver/application/language/pl_PL/LC_MESSAGES:
total 540
-rw-r--r-- 1 root root 171374 Jan 14 15:53 pl_PL.mo
-rw-r--r-- 1 root root 378746 Jan 14 15:53 pl_PL.po

/var/www/html/nagioslogserver/application/language/portuguese:
total 4
-rw-r--r-- 1 root root 48 May 14  2015 main_lang.php

/var/www/html/nagioslogserver/application/language/pt_PT:
total 4
drwxr-xr-x 2 root root 4096 Jul 16  2015 LC_MESSAGES

/var/www/html/nagioslogserver/application/language/pt_PT/LC_MESSAGES:
total 548
-rw-r--r-- 1 root root 173587 Jan 14 15:53 pt_PT.mo
-rw-r--r-- 1 root root 381127 Jan 14 15:53 pt_PT.po

/var/www/html/nagioslogserver/application/language/ru_RU:
total 4
drwxr-xr-x 2 root root 4096 Jul 16  2015 LC_MESSAGES

/var/www/html/nagioslogserver/application/language/ru_RU/LC_MESSAGES:
total 652
-rw-r--r-- 1 root root 226033 Jan 14 15:53 ru_RU.mo
-rw-r--r-- 1 root root 434398 Jan 14 15:53 ru_RU.po

/var/www/html/nagioslogserver/application/language/russian:
total 4
-rw-r--r-- 1 root root 48 May 14  2015 main_lang.php

/var/www/html/nagioslogserver/application/language/spanish:
total 4
-rw-r--r-- 1 root root 48 May 14  2015 main_lang.php

/var/www/html/nagioslogserver/application/language/zh_CN:
total 4
drwxr-xr-x 2 root root 4096 Jul 16  2015 LC_MESSAGES

/var/www/html/nagioslogserver/application/language/zh_CN/LC_MESSAGES:
total 512
-rw-r--r-- 1 root root 155719 Jan 14 15:53 zh_CN.mo
-rw-r--r-- 1 root root 361181 Jan 14 15:53 zh_CN.po

/var/www/html/nagioslogserver/application/language/zh_TW:
total 4
drwxr-xr-x 2 root root 4096 Jul 16  2015 LC_MESSAGES

/var/www/html/nagioslogserver/application/language/zh_TW/LC_MESSAGES:
total 512
-rw-r--r-- 1 root root 155707 Jan 14 15:53 zh_TW.mo
-rw-r--r-- 1 root root 361190 Jan 14 15:53 zh_TW.po

/var/www/html/nagioslogserver/application/libraries:
total 132
drwxr-xr-x 4 root root  4096 Jul 16  2015 adLDAP
-rw-r--r-- 1 root root 41004 Jan 14 15:53 BasicLDAP.php
-rw-r--r-- 1 root root 82560 Jan 14 15:53 elasticsearch.php

/var/www/html/nagioslogserver/application/libraries/adLDAP:
total 40
-rw-r--r-- 1 root root 31293 Jan 14 15:53 AdLDAP.php
drwxr-xr-x 2 root root  4096 Jul 16  2015 classes
drwxr-xr-x 2 root root  4096 Jul 16  2015 collections

/var/www/html/nagioslogserver/application/libraries/adLDAP/classes:
total 108
-rw-r--r-- 1 root root  5476 Jan 14 15:53 adLDAPComputers.php
-rw-r--r-- 1 root root 11626 Jan 14 15:53 adLDAPContacts.php
-rw-r--r-- 1 root root 17535 Jan 14 15:53 adLDAPExchange.php
-rw-r--r-- 1 root root  6808 Jan 14 15:53 adLDAPFolders.php
-rw-r--r-- 1 root root 23532 Jan 14 15:53 adLDAPGroups.php
-rw-r--r-- 1 root root 28353 Jan 14 15:53 adLDAPUsers.php
-rw-r--r-- 1 root root  8100 Jan 14 15:53 adLDAPUtils.php

/var/www/html/nagioslogserver/application/libraries/adLDAP/collections:
total 20
-rw-r--r-- 1 root root 4024 Jan 14 15:53 adLDAPCollection.php
-rw-r--r-- 1 root root 1455 Jan 14 15:53 adLDAPComputerCollection.php
-rw-r--r-- 1 root root 1453 Jan 14 15:53 adLDAPContactCollection.php
-rw-r--r-- 1 root root 1449 Jan 14 15:53 adLDAPGroupCollection.php
-rw-r--r-- 1 root root 1447 Jan 14 15:53 adLDAPUserCollection.php

/var/www/html/nagioslogserver/application/logs:
total 0

/var/www/html/nagioslogserver/application/models:
total 764
-rw-r--r-- 1 root root 230796 Jan 14 15:53 alert.php
-rw-r--r-- 1 root root  98580 Jan 14 15:53 cmdsubsys.php
-rw-r--r-- 1 root root  42796 Jan 14 15:53 config_option.php
-rw-r--r-- 1 root root  18892 Jan 14 15:53 integrity.php
-rw-r--r-- 1 root root  42476 Jan 14 15:53 logger.php
-rw-r--r-- 1 root root 113696 Jan 14 15:53 ls_configure.php
-rw-r--r-- 1 root root  49908 Jan 14 15:53 systemstat.php
-rw-r--r-- 1 root root 167244 Jan 14 15:53 users.php

/var/www/html/nagioslogserver/application/queries:
total 0

/var/www/html/nagioslogserver/application/third_party:
total 4
drwxr-xr-x 3 root root 4096 May 14  2015 magpie

/var/www/html/nagioslogserver/application/third_party/magpie:
total 52
drwxr-xr-x 2 root root  4096 May 14  2015 extlib
-rw-r--r-- 1 root root  6376 Jan 14 15:53 rss_cache.inc
-rw-r--r-- 1 root root 15175 Jan 14 15:53 rss_fetch.inc
-rw-r--r-- 1 root root 19642 Jan 14 15:53 rss_parse.inc
-rw-r--r-- 1 root root  2056 Jan 14 15:53 rss_utils.inc

/var/www/html/nagioslogserver/application/third_party/magpie/extlib:
total 28
-rw-r--r-- 1 root root 27402 Jan 14 15:53 Snoopy.class.inc

/var/www/html/nagioslogserver/application/views:
total 76
drwxr-xr-x 4 root root  4096 Jul 16  2015 admin
drwxr-xr-x 2 root root  4096 Dec 22 08:36 alerts
drwxr-xr-x 3 root root  4096 May 14  2015 auth
drwxr-xr-x 2 root root  4096 May 14  2015 configure
-rw-r--r-- 1 root root 16000 Jan 14 15:53 dashboard.php
drwxr-xr-x 2 root root  4096 May 14  2015 dashlet
drwxr-xr-x 3 root root  4096 May 14  2015 help
-rw-r--r-- 1 root root 13309 Jan 14 15:53 home.php
drwxr-xr-x 2 root root  4096 May 14  2015 includes
-rw-r--r-- 1 root root  7956 Jan 14 15:53 profile.php
drwxr-xr-x 2 root root  4096 May 14  2015 reports
drwxr-xr-x 2 root root  4096 May 14  2015 setup

/var/www/html/nagioslogserver/application/views/admin:
total 240
-rw-r--r-- 1 root root  2016 Jan 14 15:53 admin_report.php
drwxr-xr-x 2 root root  4096 Jul 16  2015 auth_servers
-rw-r--r-- 1 root root 18878 Jan 14 15:53 backup.php
-rw-r--r-- 1 root root 15720 Jan 14 15:53 cluster.php
-rw-r--r-- 1 root root 11695 Jan 14 15:53 create_user.php
-rw-r--r-- 1 root root 12560 Jan 14 15:53 edit_user.php
-rw-r--r-- 1 root root  7516 Jan 14 15:53 globals.php
-rw-r--r-- 1 root root  6392 Jan 14 15:53 home.php
-rw-r--r-- 1 root root  7936 Jan 14 15:53 import_users_final.php
-rw-r--r-- 1 root root  2911 Jan 14 15:53 import_users.php
-rw-r--r-- 1 root root  8010 Jan 14 15:53 import_users_select.php
-rw-r--r-- 1 root root 26280 Jan 14 15:53 index_status.php
-rw-r--r-- 1 root root 48673 Jan 14 15:53 instance_status.php
-rw-r--r-- 1 root root  7600 Jan 14 15:53 leftbar.php
-rw-r--r-- 1 root root  4141 Jan 14 15:53 license.php
-rw-r--r-- 1 root root  7761 Jan 14 15:53 mail.php
drwxr-xr-x 2 root root  4096 May 14  2015 rss
-rw-r--r-- 1 root root  8253 Jan 14 15:53 subsystem.php
-rw-r--r-- 1 root root  5582 Jan 14 15:53 system_status.php
-rw-r--r-- 1 root root  5217 Jan 14 15:53 users.php
-rw-r--r-- 1 root root     0 Jan 14 15:53 wizards.php

/var/www/html/nagioslogserver/application/views/admin/auth_servers:
total 28
-rw-r--r-- 1 root root 9087 Jan 14 15:53 add.php
-rw-r--r-- 1 root root 9161 Jan 14 15:53 edit.php
-rw-r--r-- 1 root root 3976 Jan 14 15:53 manage.php

/var/www/html/nagioslogserver/application/views/admin/rss:
total 8
-rw-r--r-- 1 root root 450 Jan 14 15:53 dashboard_feed.php
-rw-r--r-- 1 root root 204 Jan 14 15:53 dashboard_marketing_feed.php

/var/www/html/nagioslogserver/application/views/alerts:
total 84
-rw-r--r-- 1 root root 32265 Jan 14 15:53 home.php
-rw-r--r-- 1 root root  1385 Jan 14 15:53 leftbar.php
-rw-r--r-- 1 root root  9093 Jan 14 15:53 nrdp.php
-rw-r--r-- 1 root root  6693 Jan 14 15:53 reactor.php
-rw-r--r-- 1 root root 11389 Jan 14 15:53 snmp.php
-rw-r--r-- 1 root root 15969 Jan 14 15:53 templates.php

/var/www/html/nagioslogserver/application/views/auth:
total 20
drwxr-xr-x 2 root root 4096 May 14  2015 email
-rw-r--r-- 1 root root 1307 Jan 14 15:53 forgot_password.php
-rw-r--r-- 1 root root 4117 Jan 14 15:53 login.php
-rw-r--r-- 1 root root 1596 Jan 14 15:53 reset_password.php

/var/www/html/nagioslogserver/application/views/auth/email:
total 4
-rw-r--r-- 1 root root 330 Jan 14 15:53 forgot_password.tpl.php

/var/www/html/nagioslogserver/application/views/configure:
total 56
-rw-r--r-- 1 root root  5728 Jan 14 15:53 apply.php
-rw-r--r-- 1 root root  1438 Jan 14 15:53 home.php
-rw-r--r-- 1 root root 31375 Jan 14 15:53 instance.php
-rw-r--r-- 1 root root  8928 Jan 14 15:53 snapshots.php

/var/www/html/nagioslogserver/application/views/dashlet:
total 8
-rw-r--r-- 1 root root  200 Jan 14 15:53 dashlet_iframe.php
-rw-r--r-- 1 root root 1892 Jan 14 15:53 dashlet.php

/var/www/html/nagioslogserver/application/views/help:
total 156
-rw-r--r-- 1 root root  9072 Jan 14 15:53 apache_setup.php
drwxr-xr-x 2 root root  4096 Dec 22 08:36 assets
-rw-r--r-- 1 root root  4221 Jan 14 15:53 elastic_log.php
-rw-r--r-- 1 root root  3417 Jan 14 15:53 home.php
-rw-r--r-- 1 root root  5826 Jan 14 15:53 IIS_setup.php
-rw-r--r-- 1 root root 11658 Jan 14 15:53 import.php
-rw-r--r-- 1 root root  1690 Jan 14 15:53 leftbar.php
-rw-r--r-- 1 root root 10036 Jan 14 15:53 linux_files.php
-rw-r--r-- 1 root root 11107 Jan 14 15:53 linux_setup.php
-rw-r--r-- 1 root root  3121 Jan 14 15:53 mssql_setup.php
-rw-r--r-- 1 root root 13590 Jan 14 15:53 mysql_setup.php
-rw-r--r-- 1 root root  6633 Jan 14 15:53 network_setup.php
-rw-r--r-- 1 root root 19609 Jan 14 15:53 PHP_setup.php
-rw-r--r-- 1 root root  8873 Jan 14 15:53 source_setup.php
-rw-r--r-- 1 root root  2219 Jan 14 15:53 users.php
-rw-r--r-- 1 root root  5821 Jan 14 15:53 windows_files.php
-rw-r--r-- 1 root root  4876 Jan 14 15:53 windows_setup.php

/var/www/html/nagioslogserver/application/views/help/assets:
total 128
-rw-r--r-- 1 root root 1469 Jan 14 15:53 apache_config.txt
-rw-r--r-- 1 root root  580 Jan 14 15:53 apache_filter.txt
-rw-r--r-- 1 root root  263 Jan 14 15:53 apache_logs.txt
-rw-r--r-- 1 root root   63 Jan 14 15:53 IIS_files2.txt
-rw-r--r-- 1 root root  184 Jan 14 15:53 IIS_files.txt
-rw-r--r-- 1 root root  170 Jan 14 15:53 import_files1.txt
-rw-r--r-- 1 root root  174 Jan 14 15:53 import_files2.txt
-rw-r--r-- 1 root root   31 Jan 14 15:53 import_files3_nc_apt.txt
-rw-r--r-- 1 root root   18 Jan 14 15:53 import_files3_nc_yum.txt
-rw-r--r-- 1 root root   64 Jan 14 15:53 import_files3.txt
-rw-r--r-- 1 root root  102 Jan 14 15:53 import_files4.txt
-rw-r--r-- 1 root root   97 Jan 14 15:53 import_files5.txt
-rw-r--r-- 1 root root  102 Jan 14 15:53 import_files6.txt
-rw-r--r-- 1 root root   97 Jan 14 15:53 import_files7.txt
-rw-r--r-- 1 root root  569 Jan 14 15:53 linux_base.txt
-rw-r--r-- 1 root root  580 Jan 14 15:53 linux_config.txt
-rw-r--r-- 1 root root  177 Jan 14 15:53 linux_files.txt
-rw-r--r-- 1 root root  206 Jan 14 15:53 linux_manual.txt
-rw-r--r-- 1 root root  118 Jan 14 15:53 linux_setup.txt
-rw-r--r-- 1 root root  597 Jan 14 15:53 mysql_config.txt
-rw-r--r-- 1 root root   41 Jan 14 15:53 mysqld_conf.txt
-rw-r--r-- 1 root root  179 Jan 14 15:53 mysql_filter.txt
-rw-r--r-- 1 root root  157 Jan 14 15:53 mysql_logs.txt
-rw-r--r-- 1 root root   10 Jan 14 15:53 network_IP.txt
-rw-r--r-- 1 root root   56 Jan 14 15:53 network_netcat.txt
-rw-r--r-- 1 root root   13 Jan 14 15:53 network_Port.txt
-rw-r--r-- 1 root root 1536 Jan 14 15:53 nxlog.conf
-rw-r--r-- 1 root root  577 Jan 14 15:53 PHP_config.txt
-rw-r--r-- 1 root root  151 Jan 14 15:53 PHP_logs.txt
-rw-r--r-- 1 root root  193 Jan 14 15:53 syslog-ng.txt
-rw-r--r-- 1 root root   66 Jan 14 15:53 windows_files2.txt
-rw-r--r-- 1 root root  164 Jan 14 15:53 windows_files.txt

/var/www/html/nagioslogserver/application/views/includes:
total 68
-rw-r--r-- 1 root root  1166 Jan 14 15:53 footer.php
-rw-r--r-- 1 root root 64384 Jan 14 15:53 header.php

/var/www/html/nagioslogserver/application/views/reports:
total 8
-rw-r--r-- 1 root root 2016 Jan 14 15:53 home.php
-rw-r--r-- 1 root root 2072 Jan 14 15:53 leftbar.php

/var/www/html/nagioslogserver/application/views/setup:
total 24
-rw-r--r-- 1 root root  958 Jan 14 15:53 down.php
-rw-r--r-- 1 root root 1963 Jan 14 15:53 enterkey.php
-rw-r--r-- 1 root root 8780 Jan 14 15:53 install.php
-rw-r--r-- 1 root root 1031 Jan 14 15:53 waiting.php

/var/www/html/nagioslogserver/system:
total 24
drwxr-xr-x 2 root root 4096 May 14  2015 core
drwxr-xr-x 3 root root 4096 May 14  2015 database
drwxr-xr-x 2 root root 4096 May 14  2015 fonts
drwxr-xr-x 2 root root 4096 May 14  2015 helpers
drwxr-xr-x 3 root root 4096 May 14  2015 language
drwxr-xr-x 4 root root 4096 May 14  2015 libraries

/var/www/html/nagioslogserver/system/core:
total 196
-rw-r--r-- 1 root root  2949 Jan 14 15:53 Benchmark.php
-rw-r--r-- 1 root root 11392 Jan 14 15:53 CodeIgniter.php
-rw-r--r-- 1 root root 13417 Jan 14 15:53 Common.php
-rw-r--r-- 1 root root  8157 Jan 14 15:53 Config.php
-rw-r--r-- 1 root root  1565 Jan 14 15:53 Controller.php
-rw-r--r-- 1 root root  4695 Jan 14 15:53 Exceptions.php
-rw-r--r-- 1 root root  4697 Jan 14 15:53 Hooks.php
-rw-r--r-- 1 root root 18324 Jan 14 15:53 Input.php
-rw-r--r-- 1 root root  3632 Jan 14 15:53 Lang.php
-rw-r--r-- 1 root root 30576 Jan 14 15:53 Loader.php
-rw-r--r-- 1 root root  1190 Jan 14 15:53 Model.php
-rw-r--r-- 1 root root 12935 Jan 14 15:53 Output.php
-rw-r--r-- 1 root root 12394 Jan 14 15:53 Router.php
-rw-r--r-- 1 root root 22010 Jan 14 15:53 Security.php
-rw-r--r-- 1 root root 14443 Jan 14 15:53 URI.php
-rw-r--r-- 1 root root  3584 Jan 14 15:53 Utf8.php

/var/www/html/nagioslogserver/system/database:
total 128
-rw-r--r--  1 root root 42979 Jan 14 15:53 DB_active_rec.php
-rw-r--r--  1 root root  4378 Jan 14 15:53 DB_cache.php
-rw-r--r--  1 root root 32649 Jan 14 15:53 DB_driver.php
-rw-r--r--  1 root root  7447 Jan 14 15:53 DB_forge.php
-rw-r--r--  1 root root  4190 Jan 14 15:53 DB.php
-rw-r--r--  1 root root  9017 Jan 14 15:53 DB_result.php
-rw-r--r--  1 root root  9804 Jan 14 15:53 DB_utility.php
drwxr-xr-x 12 root root  4096 May 14  2015 drivers

/var/www/html/nagioslogserver/system/database/drivers:
total 40
drwxr-xr-x 2 root root 4096 May 14  2015 cubrid
drwxr-xr-x 2 root root 4096 May 14  2015 mssql
drwxr-xr-x 2 root root 4096 May 14  2015 mysql
drwxr-xr-x 2 root root 4096 May 14  2015 mysqli
drwxr-xr-x 2 root root 4096 May 14  2015 oci8
drwxr-xr-x 2 root root 4096 May 14  2015 odbc
drwxr-xr-x 2 root root 4096 May 14  2015 pdo
drwxr-xr-x 2 root root 4096 May 14  2015 postgre
drwxr-xr-x 2 root root 4096 May 14  2015 sqlite
drwxr-xr-x 2 root root 4096 May 14  2015 sqlsrv

/var/www/html/nagioslogserver/system/database/drivers/cubrid:
total 40
-rw-r--r-- 1 root root 17892 Jan 14 15:53 cubrid_driver.php
-rw-r--r-- 1 root root  7059 Jan 14 15:53 cubrid_forge.php
-rw-r--r-- 1 root root  4506 Jan 14 15:53 cubrid_result.php
-rw-r--r-- 1 root root  2871 Jan 14 15:53 cubrid_utility.php

/var/www/html/nagioslogserver/system/database/drivers/mssql:
total 32
-rw-r--r-- 1 root root 14836 Jan 14 15:53 mssql_driver.php
-rw-r--r-- 1 root root  5792 Jan 14 15:53 mssql_forge.php
-rw-r--r-- 1 root root  3373 Jan 14 15:53 mssql_result.php
-rw-r--r-- 1 root root  1978 Jan 14 15:53 mssql_utility.php

/var/www/html/nagioslogserver/system/database/drivers/mysql:
total 40
-rw-r--r-- 1 root root 17371 Jan 14 15:53 mysql_driver.php
-rw-r--r-- 1 root root  6441 Jan 14 15:53 mysql_forge.php
-rw-r--r-- 1 root root  3625 Jan 14 15:53 mysql_result.php
-rw-r--r-- 1 root root  4610 Jan 14 15:53 mysql_utility.php

/var/www/html/nagioslogserver/system/database/drivers/mysqli:
total 36
-rw-r--r-- 1 root root 17409 Jan 14 15:53 mysqli_driver.php
-rw-r--r-- 1 root root  6103 Jan 14 15:53 mysqli_forge.php
-rw-r--r-- 1 root root  3641 Jan 14 15:53 mysqli_result.php
-rw-r--r-- 1 root root  1984 Jan 14 15:53 mysqli_utility.php

/var/www/html/nagioslogserver/system/database/drivers/oci8:
total 40
-rw-r--r-- 1 root root 18545 Jan 14 15:53 oci8_driver.php
-rw-r--r-- 1 root root  5610 Jan 14 15:53 oci8_forge.php
-rw-r--r-- 1 root root  4509 Jan 14 15:53 oci8_result.php
-rw-r--r-- 1 root root  1929 Jan 14 15:53 oci8_utility.php

/var/www/html/nagioslogserver/system/database/drivers/odbc:
total 36
-rw-r--r-- 1 root root 13894 Jan 14 15:53 odbc_driver.php
-rw-r--r-- 1 root root  6117 Jan 14 15:53 odbc_forge.php
-rw-r--r-- 1 root root  4593 Jan 14 15:53 odbc_result.php
-rw-r--r-- 1 root root  2260 Jan 14 15:53 odbc_utility.php

/var/www/html/nagioslogserver/system/database/drivers/pdo:
total 36
-rw-r--r-- 1 root root 17602 Jan 14 15:53 pdo_driver.php
-rw-r--r-- 1 root root  6095 Jan 14 15:53 pdo_forge.php
-rw-r--r-- 1 root root  3495 Jan 14 15:53 pdo_result.php
-rw-r--r-- 1 root root  2237 Jan 14 15:53 pdo_utility.php

/var/www/html/nagioslogserver/system/database/drivers/postgre:
total 32
-rw-r--r-- 1 root root 15511 Jan 14 15:53 postgre_driver.php
-rw-r--r-- 1 root root  7350 Jan 14 15:53 postgre_forge.php
-rw-r--r-- 1 root root  3437 Jan 14 15:53 postgre_result.php
-rw-r--r-- 1 root root  1855 Jan 14 15:53 postgre_utility.php

/var/www/html/nagioslogserver/system/database/drivers/sqlite:
total 32
-rw-r--r-- 1 root root 14055 Jan 14 15:53 sqlite_driver.php
-rw-r--r-- 1 root root  6303 Jan 14 15:53 sqlite_forge.php
-rw-r--r-- 1 root root  3549 Jan 14 15:53 sqlite_result.php
-rw-r--r-- 1 root root  2149 Jan 14 15:53 sqlite_utility.php

/var/www/html/nagioslogserver/system/database/drivers/sqlsrv:
total 32
-rw-r--r-- 1 root root 13551 Jan 14 15:53 sqlsrv_driver.php
-rw-r--r-- 1 root root  5900 Jan 14 15:53 sqlsrv_forge.php
-rw-r--r-- 1 root root  3416 Jan 14 15:53 sqlsrv_result.php
-rw-r--r-- 1 root root  1979 Jan 14 15:53 sqlsrv_utility.php

/var/www/html/nagioslogserver/system/fonts:
total 144
-rw-r--r-- 1 root root 143830 Jan 14 15:53 texb.ttf

/var/www/html/nagioslogserver/system/helpers:
total 172
-rw-r--r-- 1 root root  2509 Jan 14 15:53 array_helper.php
-rw-r--r-- 1 root root  6169 Jan 14 15:53 captcha_helper.php
-rw-r--r-- 1 root root  2591 Jan 14 15:53 cookie_helper.php
-rw-r--r-- 1 root root 12971 Jan 14 15:53 date_helper.php
-rw-r--r-- 1 root root  2062 Jan 14 15:53 directory_helper.php
-rw-r--r-- 1 root root  2747 Jan 14 15:53 download_helper.php
-rw-r--r-- 1 root root  1483 Jan 14 15:53 email_helper.php
-rw-r--r-- 1 root root 11384 Jan 14 15:53 file_helper.php
-rw-r--r-- 1 root root 21772 Jan 14 15:53 form_helper.php
-rw-r--r-- 1 root root  8796 Jan 14 15:53 html_helper.php
-rw-r--r-- 1 root root  5367 Jan 14 15:53 inflector_helper.php
-rw-r--r-- 1 root root  1409 Jan 14 15:53 language_helper.php
-rw-r--r-- 1 root root  1859 Jan 14 15:53 number_helper.php
-rw-r--r-- 1 root root  1779 Jan 14 15:53 path_helper.php
-rw-r--r-- 1 root root  2675 Jan 14 15:53 security_helper.php
-rw-r--r-- 1 root root  6466 Jan 14 15:53 smiley_helper.php
-rw-r--r-- 1 root root  6433 Jan 14 15:53 string_helper.php
-rw-r--r-- 1 root root 13134 Jan 14 15:53 text_helper.php
-rw-r--r-- 1 root root  2239 Jan 14 15:53 typography_helper.php
-rw-r--r-- 1 root root 12360 Jan 14 15:53 url_helper.php
-rw-r--r-- 1 root root  1788 Jan 14 15:53 xml_helper.php

/var/www/html/nagioslogserver/system/language:
total 4
drwxr-xr-x 2 root root 4096 May 14  2015 english

/var/www/html/nagioslogserver/system/language/english:
total 48
-rw-r--r-- 1 root root 1437 Jan 14 15:53 calendar_lang.php
-rw-r--r-- 1 root root 3177 Jan 14 15:53 date_lang.php
-rw-r--r-- 1 root root 2273 Jan 14 15:53 db_lang.php
-rw-r--r-- 1 root root 1707 Jan 14 15:53 email_lang.php
-rw-r--r-- 1 root root 1819 Jan 14 15:53 form_validation_lang.php
-rw-r--r-- 1 root root 1285 Jan 14 15:53 ftp_lang.php
-rw-r--r-- 1 root root 2011 Jan 14 15:53 imglib_lang.php
-rw-r--r-- 1 root root  715 Jan 14 15:53 migration_lang.php
-rw-r--r-- 1 root root  249 Jan 14 15:53 number_lang.php
-rw-r--r-- 1 root root 1117 Jan 14 15:53 profiler_lang.php
-rw-r--r-- 1 root root  808 Jan 14 15:53 unit_test_lang.php
-rw-r--r-- 1 root root 1619 Jan 14 15:53 upload_lang.php

/var/www/html/nagioslogserver/system/libraries:
total 452
drwxr-xr-x 3 root root  4096 May 14  2015 Cache
-rw-r--r-- 1 root root 12667 Jan 14 15:53 Calendar.php
-rw-r--r-- 1 root root 15052 Jan 14 15:53 Cart.php
-rw-r--r-- 1 root root  5338 Jan 14 15:53 Driver.php
-rw-r--r-- 1 root root 48012 Jan 14 15:53 Email.php
-rw-r--r-- 1 root root 10571 Jan 14 15:53 Encrypt.php
-rw-r--r-- 1 root root 29594 Jan 14 15:53 Form_validation.php
-rw-r--r-- 1 root root 12570 Jan 14 15:53 Ftp.php
-rw-r--r-- 1 root root 37341 Jan 14 15:53 Image_lib.php
drwxr-xr-x 2 root root  4096 May 14  2015 javascript
-rw-r--r-- 1 root root 20117 Jan 14 15:53 Javascript.php
-rw-r--r-- 1 root root  2696 Jan 14 15:53 Log.php
-rw-r--r-- 1 root root  7994 Jan 14 15:53 Migration.php
-rw-r--r-- 1 root root  9053 Jan 14 15:53 Pagination.php
-rw-r--r-- 1 root root  4427 Jan 14 15:53 Parser.php
-rw-r--r-- 1 root root 19299 Jan 14 15:53 Profiler.php
-rw-r--r-- 1 root root 19298 Jan 14 15:53 Session.php
-rw-r--r-- 1 root root  4995 Jan 14 15:53 Sha1.php
-rw-r--r-- 1 root root 11369 Jan 14 15:53 Table.php
-rw-r--r-- 1 root root 11994 Jan 14 15:53 Trackback.php
-rw-r--r-- 1 root root 12720 Jan 14 15:53 Typography.php
-rw-r--r-- 1 root root  8200 Jan 14 15:53 Unit_test.php
-rw-r--r-- 1 root root 27548 Jan 14 15:53 Upload.php
-rw-r--r-- 1 root root 10508 Jan 14 15:53 User_agent.php
-rw-r--r-- 1 root root 33567 Jan 14 15:53 Xmlrpc.php
-rw-r--r-- 1 root root 15552 Jan 14 15:53 Xmlrpcs.php
-rw-r--r-- 1 root root 10164 Jan 14 15:53 Zip.php

/var/www/html/nagioslogserver/system/libraries/Cache:
total 12
-rw-r--r-- 1 root root 4565 Jan 14 15:53 Cache.php
drwxr-xr-x 2 root root 4096 May 14  2015 drivers

/var/www/html/nagioslogserver/system/libraries/Cache/drivers:
total 20
-rw-r--r-- 1 root root 3196 Jan 14 15:53 Cache_apc.php
-rw-r--r-- 1 root root 2565 Jan 14 15:53 Cache_dummy.php
-rw-r--r-- 1 root root 3995 Jan 14 15:53 Cache_file.php
-rw-r--r-- 1 root root 4908 Jan 14 15:53 Cache_memcached.php

/var/www/html/nagioslogserver/system/libraries/javascript:
total 24
-rw-r--r-- 1 root root 24183 Jan 14 15:53 Jquery.php

/var/www/html/nagioslogserver/www:
total 52
drwxr-xr-x 7 root root   4096 Jul 16  2015 app
-rw-r--r-- 1 root root   3626 Jan 14 15:53 build.txt
-rw-r--r-- 1 root root   2151 Jan 14 15:53 config.js
drwxr-xr-x 2 root root   4096 May 14  2015 css
-rw-r--r-- 1 root root   1150 Jan 14 15:53 favicon.ico
drwxr-xr-x 2 root root   4096 May 14  2015 font
drwxr-xr-x 2 root root   4096 May 14  2015 img
-rw-r--r-- 1 root root   2073 Jan 14 15:53 index.html_old
-rw-r--r-- 1 root root   6517 Jan 14 15:53 index.php
drwxrwxr-x 8 root apache 4096 May 14  2015 media
drwxrwxr-x 2 root apache 4096 May 14  2015 scripts
drwxr-xr-x 4 root root   4096 May 14  2015 vendor

/var/www/html/nagioslogserver/www/app:
total 676
-rw-r--r--  1 root root 667219 Jan 14 15:53 app.js
drwxr-xr-x  2 root root   4096 Jul 21 13:48 components
drwxr-xr-x  2 root root   4096 May 14  2015 dashboards
drwxr-xr-x  2 root root   4096 May 14  2015 factories
drwxr-xr-x 20 root root   4096 May 14  2015 panels
drwxr-xr-x  2 root root   4096 Jul 16  2015 partials
-rw-r--r--  1 root root    236 Jan 14 15:53 setlang.inc.php

/var/www/html/nagioslogserver/www/app/components:
total 16
-rw-r--r-- 1 root root 11904 Jan 14 15:53 language.php
-rw-r--r-- 1 root root  2731 Jan 14 15:53 require.config.js

/var/www/html/nagioslogserver/www/app/dashboards:
total 48
-rw-r--r-- 1 root root 3037 Jan 14 15:53 dashlet.json
-rw-r--r-- 1 root root 5191 Jan 14 15:53 logserver.js
-rw-r--r-- 1 root root 4674 Jan 14 15:53 logserver.json
-rw-r--r-- 1 root root 3723 Jan 14 15:53 logstash.js
-rw-r--r-- 1 root root 4675 Jan 14 15:53 logstash.json
-rw-r--r-- 1 root root 4101 Jan 14 15:53 noted.json
-rw-r--r-- 1 root root 5633 Jan 14 15:53 reports.json

/var/www/html/nagioslogserver/www/app/factories:
total 4
-rw-r--r-- 1 root root 914 Jan 14 15:53 store.js

/var/www/html/nagioslogserver/www/app/panels:
total 72
drwxr-xr-x 3 root root 4096 Jul 16  2015 bettermap
drwxr-xr-x 2 root root 4096 Jul 16  2015 column
drwxr-xr-x 2 root root 4096 Jul 16  2015 dashcontrol
drwxr-xr-x 2 root root 4096 Jul 16  2015 derivequeries
drwxr-xr-x 2 root root 4096 Jul 16  2015 fields
drwxr-xr-x 2 root root 4096 Jul 16  2015 filtering
drwxr-xr-x 2 root root 4096 Jul 16  2015 goal
drwxr-xr-x 2 root root 4096 Jul 16  2015 histogram
drwxr-xr-x 2 root root 4096 Jul 16  2015 hits
drwxr-xr-x 3 root root 4096 Jul 16  2015 map
drwxr-xr-x 4 root root 4096 Jul 16  2015 query
drwxr-xr-x 2 root root 4096 Jul 16  2015 sparklines
drwxr-xr-x 2 root root 4096 Jul 16  2015 stats
drwxr-xr-x 2 root root 4096 Jul 16  2015 table
drwxr-xr-x 2 root root 4096 Jul 16  2015 terms
drwxr-xr-x 2 root root 4096 Jul 16  2015 text
drwxr-xr-x 2 root root 4096 Jul 16  2015 timepicker
drwxr-xr-x 2 root root 4096 Jul 16  2015 trends

/var/www/html/nagioslogserver/www/app/panels/bettermap:
total 152
-rw-r--r-- 1 root root    511 May 14  2015 editor.html
-rw-r--r-- 1 root root    770 Jan 14 15:53 editor.php
drwxr-xr-x 3 root root   4096 May 14  2015 leaflet
-rw-r--r-- 1 root root     32 Jan 14 15:53 module.css
-rw-r--r-- 1 root root    294 May 14  2015 module.html
-rw-r--r-- 1 root root 130741 Jan 14 15:53 module.js
-rw-r--r-- 1 root root    453 Jan 14 15:53 module.php

/var/www/html/nagioslogserver/www/app/panels/bettermap/leaflet:
total 168
drwxr-xr-x 2 root root   4096 May 14  2015 images
-rw-r--r-- 1 root root   7825 Jan 14 15:53 leaflet.css
-rw-r--r-- 1 root root    922 Jan 14 15:53 leaflet.ie.css
-rw-r--r-- 1 root root 117417 Jan 14 15:53 leaflet.js
-rw-r--r-- 1 root root   1496 Jan 14 15:53 plugins.css
-rw-r--r-- 1 root root  32049 Jan 14 15:53 plugins.js

/var/www/html/nagioslogserver/www/app/panels/bettermap/leaflet/images:
total 20
-rw-r--r-- 1 root root 2898 Jan 14 15:53 layers-2x.png
-rw-r--r-- 1 root root 1502 Jan 14 15:53 layers.png
-rw-r--r-- 1 root root 4033 Jan 14 15:53 marker-icon-2x.png
-rw-r--r-- 1 root root 1747 Jan 14 15:53 marker-icon.png
-rw-r--r-- 1 root root  797 Jan 14 15:53 marker-shadow.png

/var/www/html/nagioslogserver/www/app/panels/column:
total 28
-rw-r--r-- 1 root root 1348 May 14  2015 editor.html
-rw-r--r-- 1 root root 1876 Jan 14 15:53 editor.php
-rw-r--r-- 1 root root  313 May 14  2015 module.html
-rw-r--r-- 1 root root 1387 Jan 14 15:53 module.js
-rw-r--r-- 1 root root  428 Jan 14 15:53 module.php
-rw-r--r-- 1 root root  412 May 14  2015 panelgeneral.html
-rw-r--r-- 1 root root  595 Jan 14 15:53 panelgeneral.php

/var/www/html/nagioslogserver/www/app/panels/dashcontrol:
total 20
-rw-r--r-- 1 root root 2005 May 14  2015 editor.html
-rw-r--r-- 1 root root 2579 Jan 14 15:53 editor.php
-rw-r--r-- 1 root root  177 May 14  2015 module.html
-rw-r--r-- 1 root root 3785 Jan 14 15:53 module.js
-rw-r--r-- 1 root root  250 Jan 14 15:53 module.php

/var/www/html/nagioslogserver/www/app/panels/derivequeries:
total 20
-rw-r--r-- 1 root root  11 May 14  2015 editor.html
-rw-r--r-- 1 root root  60 Jan 14 15:53 editor.php
-rw-r--r-- 1 root root 247 May 14  2015 module.html
-rw-r--r-- 1 root root 637 Jan 14 15:53 module.js
-rw-r--r-- 1 root root 321 Jan 14 15:53 module.php

/var/www/html/nagioslogserver/www/app/panels/fields:
total 28
-rw-r--r-- 1 root root  667 May 14  2015 editor.html
-rw-r--r-- 1 root root  850 Jan 14 15:53 editor.php
-rw-r--r-- 1 root root 1052 May 14  2015 micropanel.html
-rw-r--r-- 1 root root 1279 Jan 14 15:53 micropanel.php
-rw-r--r-- 1 root root  141 May 14  2015 module.html
-rw-r--r-- 1 root root  508 Jan 14 15:53 module.js
-rw-r--r-- 1 root root  232 Jan 14 15:53 module.php

/var/www/html/nagioslogserver/www/app/panels/filtering:
total 32
-rw-r--r-- 1 root root   81 May 14  2015 editor.html
-rw-r--r-- 1 root root  178 Jan 14 15:53 editor.php
-rw-r--r-- 1 root root  552 May 14  2015 meta.html
-rw-r--r-- 1 root root  690 Jan 14 15:53 meta.php
-rw-r--r-- 1 root root 4034 May 14  2015 module.html
-rw-r--r-- 1 root root 1329 Jan 14 15:53 module.js
-rw-r--r-- 1 root root 4605 Jan 14 15:53 module.php

/var/www/html/nagioslogserver/www/app/panels/goal:
total 20
-rw-r--r-- 1 root root  919 May 14  2015 editor.html
-rw-r--r-- 1 root root 1318 Jan 14 15:53 editor.php
-rw-r--r-- 1 root root  748 May 14  2015 module.html
-rw-r--r-- 1 root root 2828 Jan 14 15:53 module.js
-rw-r--r-- 1 root root  856 Jan 14 15:53 module.php

/var/www/html/nagioslogserver/www/app/panels/histogram:
total 76
-rw-r--r-- 1 root root  2586 May 14  2015 editor.html
-rw-r--r-- 1 root root  3359 Jan 14 15:53 editor.php
-rw-r--r-- 1 root root  3475 May 14  2015 module.html
-rw-r--r-- 1 root root 35270 Jan 14 15:53 module.js
-rw-r--r-- 1 root root  4159 Jan 14 15:53 module.php
-rw-r--r-- 1 root root  1974 May 14  2015 queriesEditor.html
-rw-r--r-- 1 root root  2341 Jan 14 15:53 queriesEditor.php
-rw-r--r-- 1 root root  4046 May 14  2015 styleEditor.html
-rw-r--r-- 1 root root  5144 Jan 14 15:53 styleEditor.php

/var/www/html/nagioslogserver/www/app/panels/hits:
total 20
-rw-r--r-- 1 root root 1585 May 14  2015 editor.html
-rw-r--r-- 1 root root 1957 Jan 14 15:53 editor.php
-rw-r--r-- 1 root root 2449 May 14  2015 module.html
-rw-r--r-- 1 root root 3371 Jan 14 15:53 module.js
-rw-r--r-- 1 root root 2883 Jan 14 15:53 module.php

/var/www/html/nagioslogserver/www/app/panels/map:
total 56
-rw-r--r-- 1 root root   603 May 14  2015 editor.html
-rw-r--r-- 1 root root   843 Jan 14 15:53 editor.php
drwxr-xr-x 2 root root  4096 May 14  2015 lib
-rw-r--r-- 1 root root  1439 May 14  2015 module.html
-rw-r--r-- 1 root root 36002 Jan 14 15:53 module.js
-rw-r--r-- 1 root root  1500 Jan 14 15:53 module.php

/var/www/html/nagioslogserver/www/app/panels/map/lib:
total 392
-rw-r--r-- 1 root root 141857 Jan 14 15:53 map.europe.js
-rw-r--r-- 1 root root 111359 Jan 14 15:53 map.usa.js
-rw-r--r-- 1 root root 142454 Jan 14 15:53 map.world.js

/var/www/html/nagioslogserver/www/app/panels/query:
total 56
-rw-r--r-- 1 root root   81 May 14  2015 editor.html
-rw-r--r-- 1 root root  178 Jan 14 15:53 editor.php
drwxr-xr-x 2 root root 4096 Jul 16  2015 editors
drwxr-xr-x 2 root root 4096 Jul 16  2015 help
-rw-r--r-- 1 root root  349 May 14  2015 helpModal.html
-rw-r--r-- 1 root root  483 Jan 14 15:53 helpModal.php
-rw-r--r-- 1 root root 1607 May 14  2015 meta.html
-rw-r--r-- 1 root root 1893 Jan 14 15:53 meta.php
-rw-r--r-- 1 root root 4101 May 14  2015 module.html
-rw-r--r-- 1 root root 2768 Jan 14 15:53 module.js
-rw-r--r-- 1 root root 4676 Jan 14 15:53 module.php
-rw-r--r-- 1 root root  604 Jan 14 15:53 query.css

/var/www/html/nagioslogserver/www/app/panels/query/editors:
total 16
-rw-r--r-- 1 root root   0 May 14  2015 lucene.html
-rw-r--r-- 1 root root  50 Jan 14 15:53 lucene.php
-rw-r--r-- 1 root root   0 May 14  2015 regex.html
-rw-r--r-- 1 root root  50 Jan 14 15:53 regex.php
-rw-r--r-- 1 root root 514 May 14  2015 topN.html
-rw-r--r-- 1 root root 698 Jan 14 15:53 topN.php

/var/www/html/nagioslogserver/www/app/panels/query/help:
total 24
-rw-r--r-- 1 root root 1713 May 14  2015 lucene.html
-rw-r--r-- 1 root root 2270 Jan 14 15:53 lucene.php
-rw-r--r-- 1 root root  547 May 14  2015 regex.html
-rw-r--r-- 1 root root  772 Jan 14 15:53 regex.php
-rw-r--r-- 1 root root 1243 May 14  2015 topN.html
-rw-r--r-- 1 root root 1613 Jan 14 15:53 topN.php

/var/www/html/nagioslogserver/www/app/panels/sparklines:
total 28
-rw-r--r-- 1 root root  1113 May 14  2015 editor.html
-rw-r--r-- 1 root root  1478 Jan 14 15:53 editor.php
-rw-r--r-- 1 root root   508 May 14  2015 module.html
-rw-r--r-- 1 root root 11198 Jan 14 15:53 module.js
-rw-r--r-- 1 root root   577 Jan 14 15:53 module.php

/var/www/html/nagioslogserver/www/app/panels/stats:
total 28
-rw-r--r-- 1 root root 1685 May 14  2015 editor.html
-rw-r--r-- 1 root root 2199 Jan 14 15:53 editor.php
-rw-r--r-- 1 root root 1511 May 14  2015 module.html
-rw-r--r-- 1 root root 8495 Jan 14 15:53 module.js
-rw-r--r-- 1 root root 1753 Jan 14 15:53 module.php

/var/www/html/nagioslogserver/www/app/panels/table:
total 72
-rw-r--r-- 1 root root  2782 May 14  2015 editor.html
-rw-r--r-- 1 root root  3418 Jan 14 15:53 editor.php
-rw-r--r-- 1 root root  3241 May 14  2015 micropanel.html
-rw-r--r-- 1 root root  3925 Jan 14 15:53 micropanel.php
-rw-r--r-- 1 root root  1049 May 14  2015 modal.html
-rw-r--r-- 1 root root  1189 Jan 14 15:53 modal.php
-rw-r--r-- 1 root root 11194 May 14  2015 module.html
-rw-r--r-- 1 root root  9031 Jan 14 15:53 module.js
-rw-r--r-- 1 root root 14756 Jan 14 15:53 module.php
-rw-r--r-- 1 root root   927 May 14  2015 pagination.html
-rw-r--r-- 1 root root  1270 Jan 14 15:53 pagination.php

/var/www/html/nagioslogserver/www/app/panels/terms:
total 28
-rw-r--r-- 1 root root 3729 May 14  2015 editor.html
-rw-r--r-- 1 root root 4716 Jan 14 15:53 editor.php
-rw-r--r-- 1 root root 2955 May 14  2015 module.html
-rw-r--r-- 1 root root 4774 Jan 14 15:53 module.js
-rw-r--r-- 1 root root 3745 Jan 14 15:53 module.php

/var/www/html/nagioslogserver/www/app/panels/text:
total 28
-rw-r--r-- 1 root root   973 May 14  2015 editor.html
-rw-r--r-- 1 root root  1241 Jan 14 15:53 editor.php
-rw-r--r-- 1 root root   322 May 14  2015 module.html
-rw-r--r-- 1 root root 10088 Jan 14 15:53 module.js
-rw-r--r-- 1 root root   494 Jan 14 15:53 module.php

/var/www/html/nagioslogserver/www/app/panels/timepicker:
total 40
-rw-r--r-- 1 root root 3575 May 14  2015 custom.html
-rw-r--r-- 1 root root 4130 Jan 14 15:53 custom.php
-rw-r--r-- 1 root root  593 May 14  2015 editor.html
-rw-r--r-- 1 root root  848 Jan 14 15:53 editor.php
-rw-r--r-- 1 root root 1754 May 14  2015 module.html
-rw-r--r-- 1 root root 2852 Jan 14 15:53 module.js
-rw-r--r-- 1 root root 2619 Jan 14 15:53 module.php
-rw-r--r-- 1 root root  323 May 14  2015 refreshctrl.html
-rw-r--r-- 1 root root  428 Jan 14 15:53 refreshctrl.php

/var/www/html/nagioslogserver/www/app/panels/trends:
total 20
-rw-r--r-- 1 root root  968 May 14  2015 editor.html
-rw-r--r-- 1 root root 1268 Jan 14 15:53 editor.php
-rw-r--r-- 1 root root 1093 May 14  2015 module.html
-rw-r--r-- 1 root root 3190 Jan 14 15:53 module.js
-rw-r--r-- 1 root root 1261 Jan 14 15:53 module.php

/var/www/html/nagioslogserver/www/app/partials:
total 188
-rw-r--r-- 1 root root 11001 May 14  2015 alerteditor.html
-rw-r--r-- 1 root root 15624 Jan 14 15:53 alerteditor.php
-rw-r--r-- 1 root root  4078 May 14  2015 dashboard.html
-rw-r--r-- 1 root root  5199 Jan 14 15:53 dashboard.php
-rw-r--r-- 1 root root  8518 May 14  2015 dasheditor.html
-rw-r--r-- 1 root root 11003 Jan 14 15:53 dasheditor.php
-rw-r--r-- 1 root root   501 May 14  2015 dashlet.html
-rw-r--r-- 1 root root   604 Jan 14 15:53 dashlet.php
-rw-r--r-- 1 root root 10079 May 14  2015 dashLoader.html
-rw-r--r-- 1 root root 12611 Jan 14 15:53 dashLoader.php
-rw-r--r-- 1 root root   567 May 14  2015 dashLoaderShare.html
-rw-r--r-- 1 root root   694 Jan 14 15:53 dashLoaderShare.php
-rw-r--r-- 1 root root   442 May 14  2015 inspector.html
-rw-r--r-- 1 root root   557 Jan 14 15:53 inspector.php
-rw-r--r-- 1 root root   127 May 14  2015 load.html
-rw-r--r-- 1 root root   188 Jan 14 15:53 load.php
-rw-r--r-- 1 root root  5982 May 14  2015 managequeries.html
-rw-r--r-- 1 root root  7124 Jan 14 15:53 managequeries.php
-rw-r--r-- 1 root root   323 May 14  2015 modal.html
-rw-r--r-- 1 root root   408 Jan 14 15:53 modal.php
-rw-r--r-- 1 root root   208 May 14  2015 paneladd.html
-rw-r--r-- 1 root root   274 Jan 14 15:53 paneladd.php
-rw-r--r-- 1 root root   865 May 14  2015 paneleditor.html
-rw-r--r-- 1 root root  1153 Jan 14 15:53 paneleditor.php
-rw-r--r-- 1 root root   934 May 14  2015 panelgeneral.html
-rw-r--r-- 1 root root  1248 Jan 14 15:53 panelgeneral.php
-rw-r--r-- 1 root root  1063 May 14  2015 querySelect.html
-rw-r--r-- 1 root root  1245 Jan 14 15:53 querySelect.php
-rw-r--r-- 1 root root  2905 May 14  2015 roweditor.html
-rw-r--r-- 1 root root  3795 Jan 14 15:53 roweditor.php

/var/www/html/nagioslogserver/www/css:
total 632
-rw-r--r-- 1 root root  48174 Jan 14 15:53 animate.min.css
-rw-r--r-- 1 root root 145972 Jan 14 15:53 bootstrap.dark.less
-rw-r--r-- 1 root root 121000 Jan 14 15:53 bootstrap.dark.min.css
-rw-r--r-- 1 root root 145475 Jan 14 15:53 bootstrap.light.less
-rw-r--r-- 1 root root 120584 Jan 14 15:53 bootstrap.light.min.css
-rw-r--r-- 1 root root  16451 Jan 14 15:53 bootstrap-responsive.min.css
-rw-r--r-- 1 root root  20095 Jan 14 15:53 font-awesome.min.css
-rw-r--r-- 1 root root   2376 Jan 14 15:53 normalize.min.css
-rw-r--r-- 1 root root  11636 Jan 14 15:53 timepicker.css

/var/www/html/nagioslogserver/www/font:
total 424
-rw-r--r-- 1 root root  61896 Jan 14 15:53 FontAwesome.otf
-rw-r--r-- 1 root root  37405 Jan 14 15:53 fontawesome-webfont.eot
-rw-r--r-- 1 root root 197829 Jan 14 15:53 fontawesome-webfont.svg
-rw-r--r-- 1 root root  79076 Jan 14 15:53 fontawesome-webfont.ttf
-rw-r--r-- 1 root root  43572 Jan 14 15:53 fontawesome-webfont.woff

/var/www/html/nagioslogserver/www/img:
total 96
-rw-r--r-- 1 root root  4687 Jan 14 15:53 annotation-icon.png
-rw-r--r-- 1 root root 22505 Jan 14 15:53 cubes.png
-rw-r--r-- 1 root root 12799 Jan 14 15:53 glyphicons-halflings.png
-rw-r--r-- 1 root root  8777 Jan 14 15:53 glyphicons-halflings-white.png
-rw-r--r-- 1 root root  7359 Jan 14 15:53 kibana.png
-rw-r--r-- 1 root root 14080 Jan 14 15:53 light.png
-rw-r--r-- 1 root root  2892 Jan 14 15:53 load_big.gif
-rw-r--r-- 1 root root   723 Jan 14 15:53 load.gif
-rw-r--r-- 1 root root   480 Jan 14 15:53 small.png

/var/www/html/nagioslogserver/www/media:
total 28
drwxrwxr-x 2 root apache 4096 May 14  2015 chosen
drwxrwxr-x 2 root apache 4096 May 14  2015 css
-rw-rwxr-- 1 root apache  822 Jan 14 15:53 favicon.ico
drwxrwxr-x 2 root apache 4096 May 14  2015 fonts
drwxrwxr-x 2 root apache 4096 Jul 16  2015 icons
drwxrwxr-x 3 root apache 4096 May 14  2015 images
drwxrwxr-x 2 root apache 4096 May 14  2015 js

/var/www/html/nagioslogserver/www/media/chosen:
total 44
-rw-rwxr-- 1 root apache 13936 Jan 14 15:53 chosen.css
-rw-rwxr-- 1 root apache 21624 Jan 14 15:53 chosen.jquery.min.js
-rw-rwxr-- 1 root apache   559 Jan 14 15:53 chosen-sprite.png

/var/www/html/nagioslogserver/www/media/css:
total 220
-rw-rwxr-- 1 root apache 126409 Jan 14 15:53 bootstrap-2.3.2.min.css
-rw-rwxr-- 1 root apache  10237 Jan 14 15:53 elastichq.css
-rw-rwxr-- 1 root apache  21984 Jan 14 15:53 font-awesome.min.css
-rw-rwxr-- 1 root apache  26998 Jan 14 15:53 jquery-ui-1.10.3.custom.min.css
-rw-rwxr-- 1 root apache   6792 Jan 14 15:53 kibana.css
-rw-rwxr-- 1 root apache  18981 Jan 14 15:53 main.css
-rw-rwxr-- 1 root apache   1626 Jan 14 15:53 prettify.css

/var/www/html/nagioslogserver/www/media/fonts:
total 600
-rw-rwxr-- 1 root apache  85908 Jan 14 15:53 FontAwesome.otf
-rw-rwxr-- 1 root apache  56006 Jan 14 15:53 fontawesome-webfont.eot
-rw-rwxr-- 1 root apache 287007 Jan 14 15:53 fontawesome-webfont.svg
-rw-rwxr-- 1 root apache 112160 Jan 14 15:53 fontawesome-webfont.ttf
-rw-rwxr-- 1 root apache  65452 Jan 14 15:53 fontawesome-webfont.woff

/var/www/html/nagioslogserver/www/media/icons:
total 240
-rw-rwxr-- 1 root apache 781 Jan 14 15:53 accept.png
-rw-rwxr-- 1 root apache 733 Jan 14 15:53 add.png
-rw-rwxr-- 1 root apache 464 Jan 14 15:53 application.png
-rw-rwxr-- 1 root apache 507 Jan 14 15:53 application_xp_terminal.png
-rw-rwxr-- 1 root apache 363 Jan 14 15:53 bin_closed.png
-rw-rwxr-- 1 root apache 476 Jan 14 15:53 bin.png
-rw-rwxr-- 1 root apache 593 Jan 14 15:53 book.png
-rw-rwxr-- 1 root apache 555 Jan 14 15:53 box.png
-rw-rwxr-- 1 root apache 286 Jan 14 15:53 bullet_add.png
-rw-rwxr-- 1 root apache 201 Jan 14 15:53 bullet_arrow_down.png
-rw-rwxr-- 1 root apache 201 Jan 14 15:53 bullet_arrow_up.png
-rw-rwxr-- 1 root apache 211 Jan 14 15:53 bullet_black.png
-rw-rwxr-- 1 root apache 308 Jan 14 15:53 bullet_delete.png
-rw-rwxr-- 1 root apache 410 Jan 14 15:53 bullet_go.png
-rw-rwxr-- 1 root apache 436 Jan 14 15:53 bullet_key.png
-rw-rwxr-- 1 root apache 207 Jan 14 15:53 bullet_toggle_minus.png
-rw-rwxr-- 1 root apache 209 Jan 14 15:53 bullet_toggle_plus.png
-rw-rwxr-- 1 root apache 448 Jan 14 15:53 bullet_wrench.png
-rw-rwxr-- 1 root apache 710 Jan 14 15:53 chart_curve.png
-rw-rwxr-- 1 root apache 526 Jan 14 15:53 chart_line.png
-rw-rwxr-- 1 root apache 918 Jan 14 15:53 chart_pie.png
-rw-rwxr-- 1 root apache 882 Jan 14 15:53 clock.png
-rw-rwxr-- 1 root apache 512 Jan 14 15:53 cog.png
-rw-rwxr-- 1 root apache 413 Jan 14 15:53 comment.png
-rw-rwxr-- 1 root apache 766 Jan 14 15:53 compress.png
-rw-rwxr-- 1 root apache 667 Jan 14 15:53 computer.png
-rw-rwxr-- 1 root apache 748 Jan 14 15:53 connect.png
-rw-rwxr-- 1 root apache 390 Jan 14 15:53 database.png
-rw-rwxr-- 1 root apache 715 Jan 14 15:53 delete.png
-rw-rwxr-- 1 root apache 796 Jan 14 15:53 disconnect.png
-rw-rwxr-- 1 root apache 691 Jan 14 15:53 disk_multiple.png
-rw-rwxr-- 1 root apache 620 Jan 14 15:53 disk.png
-rw-rwxr-- 1 root apache 693 Jan 14 15:53 door_in.png
-rw-rwxr-- 1 root apache 688 Jan 14 15:53 door_out.png
-rw-rwxr-- 1 root apache 412 Jan 14 15:53 door.png
-rw-rwxr-- 1 root apache 346 Jan 14 15:53 drive.png
-rw-rwxr-- 1 root apache 641 Jan 14 15:53 email.png
-rw-rwxr-- 1 root apache 666 Jan 14 15:53 error.png
-rw-rwxr-- 1 root apache 701 Jan 14 15:53 exclamation.png
-rw-rwxr-- 1 root apache 659 Jan 14 15:53 find.png
-rw-rwxr-- 1 root apache 688 Jan 14 15:53 folder_page.png
-rw-rwxr-- 1 root apache 639 Jan 14 15:53 folder_page_white.png
-rw-rwxr-- 1 root apache 537 Jan 14 15:53 folder.png
-rw-rwxr-- 1 root apache 842 Jan 14 15:53 group_go.png
-rw-rwxr-- 1 root apache 753 Jan 14 15:53 group.png
-rw-rwxr-- 1 root apache 786 Jan 14 15:53 help.png
-rw-rwxr-- 1 root apache 612 Jan 14 15:53 key.png
-rw-rwxr-- 1 root apache 749 Jan 14 15:53 lock.png
-rw-rwxr-- 1 root apache 615 Jan 14 15:53 magnifier.png
-rw-rwxr-- 1 root apache 612 Jan 14 15:53 monitor.png
-rw-rwxr-- 1 root apache 450 Jan 14 15:53 pencil.png
-rw-rwxr-- 1 root apache 731 Jan 14 15:53 printer.png
-rw-rwxr-- 1 root apache 649 Jan 14 15:53 report.png
-rw-rwxr-- 1 root apache 530 Jan 14 15:53 server.png
-rw-rwxr-- 1 root apache 700 Jan 14 15:53 stop.png
-rw-rwxr-- 1 root apache 537 Jan 14 15:53 tick.png
-rw-rwxr-- 1 root apache 793 Jan 14 15:53 time.png
-rw-rwxr-- 1 root apache 706 Jan 14 15:53 user_gray.png
-rw-rwxr-- 1 root apache 741 Jan 14 15:53 user.png
-rw-rwxr-- 1 root apache 748 Jan 14 15:53 user_suit.png

/var/www/html/nagioslogserver/www/media/images:
total 676
-rw-rwxr-- 1 root apache   4178 Jan 14 15:53 ajax-loader.gif
-rw-rwxr-- 1 root apache   1738 Jan 14 15:53 animated-overlay.gif
-rw-rwxr-- 1 root apache   1566 Jan 14 15:53 checkforupdates.png
-rw-rwxr-- 1 root apache  69902 Jan 14 15:53 cool_dashboard.png
-rw-rwxr-- 1 root apache  12799 Jan 14 15:53 glyphicons-halflings.png
-rw-rwxr-- 1 root apache   8777 Jan 14 15:53 glyphicons-halflings-white.png
drwxrwxr-x 2 root apache   4096 May 14  2015 logos
-rwxrwxr-x 1 root apache  15768 Jan 14 15:53 logserver_system_status_elasticsearch_down.png
-rwxrwxr-x 1 root apache   2713 Jan 14 15:53 logserver_system_status_logstash_down.png
-rwxrwxr-x 1 root apache   2153 Jan 14 15:53 logserver_system_status.png
-rw-rwxr-- 1 root apache 150185 Jan 14 15:53 mysqld_conf.png
-rw-rwxr-- 1 root apache   6074 Jan 14 15:53 nagioslogserver_logo_small.png
-rw-rwxr-- 1 root apache  52331 Jan 14 15:53 nagioslogserver_splash.png
-rwxrwxr-x 1 root apache  46211 Jan 14 15:53 net_device_syslog.png
-rw-rwxr-- 1 root apache  66734 Jan 14 15:53 php_configure_script.png
-rw-rwxr-- 1 root apache  67343 Jan 14 15:53 php_configure_syslog.png
-rw-rwxr-- 1 root apache    418 Jan 14 15:53 ui-bg_diagonals-thick_18_b81900_40x40.png
-rw-rwxr-- 1 root apache    312 Jan 14 15:53 ui-bg_diagonals-thick_20_666666_40x40.png
-rw-rwxr-- 1 root apache    212 Jan 14 15:53 ui-bg_flat_0_aaaaaa_40x100.png
-rw-rwxr-- 1 root apache    220 Jan 14 15:53 ui-bg_flat_0_eeeeee_40x100.png
-rw-rwxr-- 1 root apache    205 Jan 14 15:53 ui-bg_flat_10_000000_40x100.png
-rw-rwxr-- 1 root apache    208 Jan 14 15:53 ui-bg_flat_55_ffffff_40x100.png
-rw-rwxr-- 1 root apache    208 Jan 14 15:53 ui-bg_flat_75_ffffff_40x100.png
-rw-rwxr-- 1 root apache    262 Jan 14 15:53 ui-bg_glass_100_f6f6f6_1x400.png
-rw-rwxr-- 1 root apache    348 Jan 14 15:53 ui-bg_glass_100_fdf5ce_1x400.png
-rw-rwxr-- 1 root apache    207 Jan 14 15:53 ui-bg_glass_65_ffffff_1x400.png
-rw-rwxr-- 1 root apache   5815 Jan 14 15:53 ui-bg_gloss-wave_35_f6a828_500x100.png
-rw-rwxr-- 1 root apache    278 Jan 14 15:53 ui-bg_highlight-soft_100_eeeeee_1x100.png
-rw-rwxr-- 1 root apache    277 Jan 14 15:53 ui-bg_highlight-soft_100_f6f6f6_1x100.png
-rw-rwxr-- 1 root apache    338 Jan 14 15:53 ui-bg_highlight-soft_25_0073ea_1x100.png
-rw-rwxr-- 1 root apache    280 Jan 14 15:53 ui-bg_highlight-soft_50_dddddd_1x100.png
-rw-rwxr-- 1 root apache    328 Jan 14 15:53 ui-bg_highlight-soft_75_ffe45c_1x100.png
-rw-rwxr-- 1 root apache   4549 Jan 14 15:53 ui-icons_0073ea_256x240.png
-rw-rwxr-- 1 root apache   6922 Jan 14 15:53 ui-icons_222222_256x240.png
-rw-rwxr-- 1 root apache   4549 Jan 14 15:53 ui-icons_228ef1_256x240.png
-rw-rwxr-- 1 root apache   6992 Jan 14 15:53 ui-icons_454545_256x240.png
-rw-rwxr-- 1 root apache   6988 Jan 14 15:53 ui-icons_666666_256x240.png
-rw-rwxr-- 1 root apache   4549 Jan 14 15:53 ui-icons_ef8c08_256x240.png
-rw-rwxr-- 1 root apache   4549 Jan 14 15:53 ui-icons_ff0084_256x240.png
-rw-rwxr-- 1 root apache   4549 Jan 14 15:53 ui-icons_ffd27a_256x240.png
-rw-rwxr-- 1 root apache   6299 Jan 14 15:53 ui-icons_ffffff_256x240.png

/var/www/html/nagioslogserver/www/media/images/logos:
total 624
-rw-rwxr-- 1 root apache 24916 Jan 14 15:53 import_files.png
-rw-rwxr-- 1 root apache 27625 Jan 14 15:53 linux_files.png
-rw-rwxr-- 1 root apache 38344 Jan 14 15:53 Log_server_Logos_ApacheNB.png
-rw-rwxr-- 1 root apache  9644 Jan 14 15:53 Log_server_Logos_AppleNB.png
-rw-rwxr-- 1 root apache  6890 Jan 14 15:53 Log_server_Logos_CommandLineNB.png
-rw-rwxr-- 1 root apache 16588 Jan 14 15:53 Log_server_Logos_ComputerScreenNB.png
-rw-rwxr-- 1 root apache 39926 Jan 14 15:53 Log_server_Logos_FlashNB.png
-rw-rwxr-- 1 root apache 11894 Jan 14 15:53 Log_server_Logos_IISNB.png
-rw-rwxr-- 1 root apache 19078 Jan 14 15:53 Log_server_Logos_JavaNB.png
-rw-rwxr-- 1 root apache 21041 Jan 14 15:53 Log_server_Logos_JSNB.png
-rw-rwxr-- 1 root apache 68469 Jan 14 15:53 Log_server_Logos_LinuxNB.png
-rw-rwxr-- 1 root apache 35222 Jan 14 15:53 Log_server_Logos_MSSQLNB.png
-rw-rwxr-- 1 root apache 25298 Jan 14 15:53 Log_server_Logos_MYSQLNB.png
-rw-rwxr-- 1 root apache  5874 Jan 14 15:53 Log_server_Logos_NETNB.png
-rw-rwxr-- 1 root apache 14179 Jan 14 15:53 Log_server_Logos_NetworkDeviceNB.png
-rw-rwxr-- 1 root apache 11358 Jan 14 15:53 Log_server_Logos_NetworkNB.png
-rw-rwxr-- 1 root apache 21928 Jan 14 15:53 Log_server_Logos_NodejsNB.png
-rw-rwxr-- 1 root apache 11085 Jan 14 15:53 Log_server_Logos_OpenBookNB.png
-rw-rwxr-- 1 root apache 56656 Jan 14 15:53 Log_server_Logos_PHPNB.png
-rw-rwxr-- 1 root apache 19541 Jan 14 15:53 Log_server_Logos_PythonNB.png
-rw-rwxr-- 1 root apache 62857 Jan 14 15:53 Log_server_Logos_RubyNB.png
-rw-rwxr-- 1 root apache  8737 Jan 14 15:53 Log_server_Logos_ServerNB.png
-rw-rwxr-- 1 root apache 11846 Jan 14 15:53 Log_server_Logos_WindowsNB.png
-rw-rwxr-- 1 root apache 22810 Jan 14 15:53 windows_files.png

/var/www/html/nagioslogserver/www/media/js:
total 576
-rw-rwxr-- 1 root apache  28756 Jan 14 15:53 bootstrap.min.js
-rw-rwxr-- 1 root apache   6069 Jan 14 15:53 bootstrap-progressbar.js
-rw-rwxr-- 1 root apache   2402 Jan 14 15:53 help.js
-rw-rwxr-- 1 root apache  93021 Jan 14 15:53 jquery-1.10.1.min.js
-rw-rwxr-- 1 root apache 228137 Jan 14 15:53 jquery-ui-1.10.3.custom.min.js
-rw-rwxr-- 1 root apache  74018 Jan 14 15:53 jquery-ui-timepicker-addon.js
-rw-rwxr-- 1 root apache    868 Jan 14 15:53 lang-css.js
-rw-rwxr-- 1 root apache   1802 Jan 14 15:53 lang-sql.js
-rw-rwxr-- 1 root apache  12638 Jan 14 15:53 main.js
-rw-rwxr-- 1 root apache  14551 Jan 14 15:53 prettify.js
-rw-rwxr-- 1 root apache  16682 Jan 14 15:53 run_prettify.js
-rw-rwxr-- 1 root apache  74328 Jan 14 15:53 ZeroClipboard.js
-rwxrwxr-x 1 root apache   4036 Jan 14 15:53 ZeroClipboard.swf

/var/www/html/nagioslogserver/www/scripts:
total 3584
-rw-rwxr-- 1 root apache 3645440 Jan 14 15:53 nxlog-ce-latest.msi
-rw-rwxr-- 1 root apache      23 Jan 14 15:53 nxlog-version.txt
-rwxrwxr-x 1 root apache   10767 Jan 14 15:53 setup-linux.sh
-rwxrwxr-x 1 root apache    8141 Jan 14 15:53 shipper.py

/var/www/html/nagioslogserver/www/vendor:
total 32
drwxr-xr-x 3 root root  4096 May 14  2015 bootstrap
-rw-r--r-- 1 root root  1614 Jan 14 15:53 LICENSE.json
drwxr-xr-x 2 root root  4096 May 14  2015 require
-rw-r--r-- 1 root root 18923 Jan 14 15:53 timezone.js

/var/www/html/nagioslogserver/www/vendor/bootstrap:
total 4
drwxr-xr-x 3 root root 4096 May 14  2015 less

/var/www/html/nagioslogserver/www/vendor/bootstrap/less:
total 4
drwxr-xr-x 2 root root 4096 May 14  2015 tests

/var/www/html/nagioslogserver/www/vendor/bootstrap/less/tests:
total 88
-rw-r--r-- 1 root root  6411 Jan 14 15:53 buttons.html
-rw-r--r-- 1 root root  4597 Jan 14 15:53 css-tests.css
-rw-r--r-- 1 root root 40132 Jan 14 15:53 css-tests.html
-rw-r--r-- 1 root root  4079 Jan 14 15:53 forms.html
-rw-r--r-- 1 root root  2362 Jan 14 15:53 forms-responsive.html
-rw-r--r-- 1 root root  4692 Jan 14 15:53 navbar-fixed-top.html
-rw-r--r-- 1 root root  4797 Jan 14 15:53 navbar.html
-rw-r--r-- 1 root root  4711 Jan 14 15:53 navbar-static-top.html

/var/www/html/nagioslogserver/www/vendor/require:
total 28
-rw-r--r-- 1 root root  1093 Jan 14 15:53 css-build.js
-rw-r--r-- 1 root root 16740 Jan 14 15:53 require.js
-rw-r--r-- 1 root root   347 Jan 14 15:53 tmpl.js
[/code]

Nothing glaring staring me in the face......
2 of XI5.6.14 Prod/DR/DEV - Nagios LogServer 2 Nodes
See my projects on the Exchange at BanditBBS - Also check out my Nagios stuff on my personal page at Bandit's Home and at github
jolson
Attack Rabbit
Posts: 2560
Joined: Thu Feb 12, 2015 12:40 pm

Re: 500 Server error

Post by jolson »

Try backing up your httpd.conf file and using this one instead:

Code: Select all

#
# This is the main Apache server configuration file.  It contains the
# configuration directives that give the server its instructions.
# See <URL:http://httpd.apache.org/docs/2.2/> for detailed information.
# In particular, see
# <URL:http://httpd.apache.org/docs/2.2/mod/directives.html>
# for a discussion of each configuration directive.
#
#
# Do NOT simply read the instructions in here without understanding
# what they do.  They're here only as hints or reminders.  If you are unsure
# consult the online docs. You have been warned.
#
# The configuration directives are grouped into three basic sections:
#  1. Directives that control the operation of the Apache server process as a
#     whole (the 'global environment').
#  2. Directives that define the parameters of the 'main' or 'default' server,
#     which responds to requests that aren't handled by a virtual host.
#     These directives also provide default values for the settings
#     of all virtual hosts.
#  3. Settings for virtual hosts, which allow Web requests to be sent to
#     different IP addresses or hostnames and have them handled by the
#     same Apache server process.
#
# Configuration and logfile names: If the filenames you specify for many
# of the server's control files begin with "/" (or "drive:/" for Win32), the
# server will use that explicit path.  If the filenames do *not* begin
# with "/", the value of ServerRoot is prepended -- so "logs/foo.log"
# with ServerRoot set to "/etc/httpd" will be interpreted by the
# server as "/etc/httpd/logs/foo.log".
#

### Section 1: Global Environment
#
# The directives in this section affect the overall operation of Apache,
# such as the number of concurrent requests it can handle or where it
# can find its configuration files.
#

#
# Don't give away too much information about all the subcomponents
# we are running.  Comment out this line if you don't mind remote sites
# finding out what major optional modules you are running
ServerTokens OS

#
# ServerRoot: The top of the directory tree under which the server's
# configuration, error, and log files are kept.
#
# NOTE!  If you intend to place this on an NFS (or otherwise network)
# mounted filesystem then please read the LockFile documentation
# (available at <URL:http://httpd.apache.org/docs/2.2/mod/mpm_common.html#lockfile>);
# you will save yourself a lot of trouble.
#
# Do NOT add a slash at the end of the directory path.
#
ServerRoot "/etc/httpd"

#
# PidFile: The file in which the server should record its process
# identification number when it starts.  Note the PIDFILE variable in
# /etc/sysconfig/httpd must be set appropriately if this location is
# changed.
#
PidFile run/httpd.pid

#
# Timeout: The number of seconds before receives and sends time out.
#
Timeout 60

#
# KeepAlive: Whether or not to allow persistent connections (more than
# one request per connection). Set to "Off" to deactivate.
#
KeepAlive Off

#
# MaxKeepAliveRequests: The maximum number of requests to allow
# during a persistent connection. Set to 0 to allow an unlimited amount.
# We recommend you leave this number high, for maximum performance.
#
MaxKeepAliveRequests 100

#
# KeepAliveTimeout: Number of seconds to wait for the next request from the
# same client on the same connection.
#
KeepAliveTimeout 15

##
## Server-Pool Size Regulation (MPM specific)
##

# prefork MPM
# StartServers: number of server processes to start
# MinSpareServers: minimum number of server processes which are kept spare
# MaxSpareServers: maximum number of server processes which are kept spare
# ServerLimit: maximum value for MaxClients for the lifetime of the server
# MaxClients: maximum number of server processes allowed to start
# MaxRequestsPerChild: maximum number of requests a server process serves
<IfModule prefork.c>
StartServers       8
MinSpareServers    5
MaxSpareServers   20
ServerLimit      256
MaxClients       256
MaxRequestsPerChild  4000
</IfModule>

# worker MPM
# StartServers: initial number of server processes to start
# MaxClients: maximum number of simultaneous client connections
# MinSpareThreads: minimum number of worker threads which are kept spare
# MaxSpareThreads: maximum number of worker threads which are kept spare
# ThreadsPerChild: constant number of worker threads in each server process
# MaxRequestsPerChild: maximum number of requests a server process serves
<IfModule worker.c>
StartServers         4
MaxClients         300
MinSpareThreads     25
MaxSpareThreads     75
ThreadsPerChild     25
MaxRequestsPerChild  0
</IfModule>

#
# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, in addition to the default. See also the <VirtualHost>
# directive.
#
# Change this to Listen on specific IP addresses as shown below to
# prevent Apache from glomming onto all bound IP addresses (0.0.0.0)
#
#Listen 12.34.56.78:80
Listen 80

#
# Dynamic Shared Object (DSO) Support
#
# To be able to use the functionality of a module which was built as a DSO you
# have to place corresponding `LoadModule' lines at this location so the
# directives contained in it are actually available _before_ they are used.
# Statically compiled modules (those listed by `httpd -l') do not need
# to be loaded here.
#
# Example:
# LoadModule foo_module modules/mod_foo.so
#
LoadModule auth_basic_module modules/mod_auth_basic.so
LoadModule auth_digest_module modules/mod_auth_digest.so
LoadModule authn_file_module modules/mod_authn_file.so
LoadModule authn_alias_module modules/mod_authn_alias.so
LoadModule authn_anon_module modules/mod_authn_anon.so
LoadModule authn_dbm_module modules/mod_authn_dbm.so
LoadModule authn_default_module modules/mod_authn_default.so
LoadModule authz_host_module modules/mod_authz_host.so
LoadModule authz_user_module modules/mod_authz_user.so
LoadModule authz_owner_module modules/mod_authz_owner.so
LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
LoadModule authz_dbm_module modules/mod_authz_dbm.so
LoadModule authz_default_module modules/mod_authz_default.so
LoadModule ldap_module modules/mod_ldap.so
LoadModule authnz_ldap_module modules/mod_authnz_ldap.so
LoadModule include_module modules/mod_include.so
LoadModule log_config_module modules/mod_log_config.so
LoadModule logio_module modules/mod_logio.so
LoadModule env_module modules/mod_env.so
LoadModule ext_filter_module modules/mod_ext_filter.so
LoadModule mime_magic_module modules/mod_mime_magic.so
LoadModule expires_module modules/mod_expires.so
LoadModule deflate_module modules/mod_deflate.so
LoadModule headers_module modules/mod_headers.so
LoadModule usertrack_module modules/mod_usertrack.so
LoadModule setenvif_module modules/mod_setenvif.so
LoadModule mime_module modules/mod_mime.so
LoadModule dav_module modules/mod_dav.so
LoadModule status_module modules/mod_status.so
LoadModule autoindex_module modules/mod_autoindex.so
LoadModule info_module modules/mod_info.so
LoadModule dav_fs_module modules/mod_dav_fs.so
LoadModule vhost_alias_module modules/mod_vhost_alias.so
LoadModule negotiation_module modules/mod_negotiation.so
LoadModule dir_module modules/mod_dir.so
LoadModule actions_module modules/mod_actions.so
LoadModule speling_module modules/mod_speling.so
LoadModule userdir_module modules/mod_userdir.so
LoadModule alias_module modules/mod_alias.so
LoadModule substitute_module modules/mod_substitute.so
LoadModule rewrite_module modules/mod_rewrite.so
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
LoadModule proxy_http_module modules/mod_proxy_http.so
LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
LoadModule proxy_connect_module modules/mod_proxy_connect.so
LoadModule cache_module modules/mod_cache.so
LoadModule suexec_module modules/mod_suexec.so
LoadModule disk_cache_module modules/mod_disk_cache.so
LoadModule cgi_module modules/mod_cgi.so
LoadModule version_module modules/mod_version.so

#
# The following modules are not loaded by default:
#
#LoadModule asis_module modules/mod_asis.so
#LoadModule authn_dbd_module modules/mod_authn_dbd.so
#LoadModule cern_meta_module modules/mod_cern_meta.so
#LoadModule cgid_module modules/mod_cgid.so
#LoadModule dbd_module modules/mod_dbd.so
#LoadModule dumpio_module modules/mod_dumpio.so
#LoadModule filter_module modules/mod_filter.so
#LoadModule ident_module modules/mod_ident.so
#LoadModule log_forensic_module modules/mod_log_forensic.so
#LoadModule unique_id_module modules/mod_unique_id.so
#

#
# Load config files from the config directory "/etc/httpd/conf.d".
#
Include conf.d/*.conf

#
# ExtendedStatus controls whether Apache will generate "full" status
# information (ExtendedStatus On) or just basic information (ExtendedStatus
# Off) when the "server-status" handler is called. The default is Off.
#
#ExtendedStatus On

#
# If you wish httpd to run as a different user or group, you must run
# httpd as root initially and it will switch.
#
# User/Group: The name (or #number) of the user/group to run httpd as.
#  . On SCO (ODT 3) use "User nouser" and "Group nogroup".
#  . On HPUX you may not be able to use shared memory as nobody, and the
#    suggested workaround is to create a user www and use that user.
#  NOTE that some kernels refuse to setgid(Group) or semctl(IPC_SET)
#  when the value of (unsigned)Group is above 60000;
#  don't use Group #-1 on these systems!
#
User apache
Group apache

### Section 2: 'Main' server configuration
#
# The directives in this section set up the values used by the 'main'
# server, which responds to any requests that aren't handled by a
# <VirtualHost> definition.  These values also provide defaults for
# any <VirtualHost> containers you may define later in the file.
#
# All of these directives may appear inside <VirtualHost> containers,
# in which case these default settings will be overridden for the
# virtual host being defined.
#

#
# ServerAdmin: Your address, where problems with the server should be
# e-mailed.  This address appears on some server-generated pages, such
# as error documents.  e.g. [email protected]
#
ServerAdmin root@localhost

#
# ServerName gives the name and port that the server uses to identify itself.
# This can often be determined automatically, but we recommend you specify
# it explicitly to prevent problems during startup.
#
# If this is not set to valid DNS name for your host, server-generated
# redirections will not work.  See also the UseCanonicalName directive.
#
# If your host doesn't have a registered DNS name, enter its IP address here.
# You will have to access it by its address anyway, and this will make
# redirections work in a sensible way.
#
#ServerName www.example.com:80

#
# UseCanonicalName: Determines how Apache constructs self-referencing
# URLs and the SERVER_NAME and SERVER_PORT variables.
# When set "Off", Apache will use the Hostname and Port supplied
# by the client.  When set "On", Apache will use the value of the
# ServerName directive.
#
UseCanonicalName Off

#
# DocumentRoot: The directory out of which you will serve your
# documents. By default, all requests are taken from this directory, but
# symbolic links and aliases may be used to point to other locations.
#
DocumentRoot "/var/www/html"

#
# Each directory to which Apache has access can be configured with respect
# to which services and features are allowed and/or disabled in that
# directory (and its subdirectories).
#
# First, we configure the "default" to be a very restrictive set of
# features.
#
<Directory />
    Options FollowSymLinks
    AllowOverride None
</Directory>

#
# Note that from this point forward you must specifically allow
# particular features to be enabled - so if something's not working as
# you might expect, make sure that you have specifically enabled it
# below.
#

#
# This should be changed to whatever you set DocumentRoot to.
#
<Directory "/var/www/html">

#
# Possible values for the Options directive are "None", "All",
# or any combination of:
#   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
# The Options directive is both complicated and important.  Please see
# http://httpd.apache.org/docs/2.2/mod/core.html#options
# for more information.
#
    Options Indexes FollowSymLinks

#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
#   Options FileInfo AuthConfig Limit
#
    AllowOverride None

#
# Controls who can get stuff from this server.
#
    Order allow,deny
    Allow from all

</Directory>

#
# UserDir: The name of the directory that is appended onto a user's home
# directory if a ~user request is received.
#
# The path to the end user account 'public_html' directory must be
# accessible to the webserver userid.  This usually means that ~userid
# must have permissions of 711, ~userid/public_html must have permissions
# of 755, and documents contained therein must be world-readable.
# Otherwise, the client will only receive a "403 Forbidden" message.
#
# See also: http://httpd.apache.org/docs/misc/FAQ.html#forbidden
#
<IfModule mod_userdir.c>
    #
    # UserDir is disabled by default since it can confirm the presence
    # of a username on the system (depending on home directory
    # permissions).
    #
    UserDir disabled

    #
    # To enable requests to /~user/ to serve the user's public_html
    # directory, remove the "UserDir disabled" line above, and uncomment
    # the following line instead:
    #
    #UserDir public_html

</IfModule>

#
# Control access to UserDir directories.  The following is an example
# for a site where these directories are restricted to read-only.
#
#<Directory /home/*/public_html>
#    AllowOverride FileInfo AuthConfig Limit
#    Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
#    <Limit GET POST OPTIONS>
#        Order allow,deny
#        Allow from all
#    </Limit>
#    <LimitExcept GET POST OPTIONS>
#        Order deny,allow
#        Deny from all
#    </LimitExcept>
#</Directory>

#
# DirectoryIndex: sets the file that Apache will serve if a directory
# is requested.
#
# The index.html.var file (a type-map) is used to deliver content-
# negotiated documents.  The MultiViews Option can be used for the
# same purpose, but it is much slower.
#
DirectoryIndex index.html index.html.var

#
# AccessFileName: The name of the file to look for in each directory
# for additional configuration directives.  See also the AllowOverride
# directive.
#
AccessFileName .htaccess

#
# The following lines prevent .htaccess and .htpasswd files from being
# viewed by Web clients.
#
<Files ~ "^\.ht">
    Order allow,deny
    Deny from all
    Satisfy All
</Files>

#
# TypesConfig describes where the mime.types file (or equivalent) is
# to be found.
#
TypesConfig /etc/mime.types

#
# DefaultType is the default MIME type the server will use for a document
# if it cannot otherwise determine one, such as from filename extensions.
# If your server contains mostly text or HTML documents, "text/plain" is
# a good value.  If most of your content is binary, such as applications
# or images, you may want to use "application/octet-stream" instead to
# keep browsers from trying to display binary files as though they are
# text.
#
DefaultType text/plain

#
# The mod_mime_magic module allows the server to use various hints from the
# contents of the file itself to determine its type.  The MIMEMagicFile
# directive tells the module where the hint definitions are located.
#
<IfModule mod_mime_magic.c>
#   MIMEMagicFile /usr/share/magic.mime
    MIMEMagicFile conf/magic
</IfModule>

#
# HostnameLookups: Log the names of clients or just their IP addresses
# e.g., www.apache.org (on) or 204.62.129.132 (off).
# The default is off because it'd be overall better for the net if people
# had to knowingly turn this feature on, since enabling it means that
# each client request will result in AT LEAST one lookup request to the
# nameserver.
#
HostnameLookups Off

#
# EnableMMAP: Control whether memory-mapping is used to deliver
# files (assuming that the underlying OS supports it).
# The default is on; turn this off if you serve from NFS-mounted
# filesystems.  On some systems, turning it off (regardless of
# filesystem) can improve performance; for details, please see
# http://httpd.apache.org/docs/2.2/mod/core.html#enablemmap
#
#EnableMMAP off

#
# EnableSendfile: Control whether the sendfile kernel support is
# used to deliver files (assuming that the OS supports it).
# The default is on; turn this off if you serve from NFS-mounted
# filesystems.  Please see
# http://httpd.apache.org/docs/2.2/mod/core.html#enablesendfile
#
#EnableSendfile off

#
# ErrorLog: The location of the error log file.
# If you do not specify an ErrorLog directive within a <VirtualHost>
# container, error messages relating to that virtual host will be
# logged here.  If you *do* define an error logfile for a <VirtualHost>
# container, that host's errors will be logged there and not here.
#
ErrorLog logs/error_log

#
# LogLevel: Control the number of messages logged to the error_log.
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
#
LogLevel warn

#
# The following directives define some format nicknames for use with
# a CustomLog directive (see below).
#
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent

# "combinedio" includes actual counts of actual bytes received (%I) and sent (%O); this
# requires the mod_logio module to be loaded.
#LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio

#
# The location and format of the access logfile (Common Logfile Format).
# If you do not define any access logfiles within a <VirtualHost>
# container, they will be logged here.  Contrariwise, if you *do*
# define per-<VirtualHost> access logfiles, transactions will be
# logged therein and *not* in this file.
#
#CustomLog logs/access_log common

#
# If you would like to have separate agent and referer logfiles, uncomment
# the following directives.
#
#CustomLog logs/referer_log referer
#CustomLog logs/agent_log agent

#
# For a single logfile with access, agent, and referer information
# (Combined Logfile Format), use the following directive:
#
CustomLog logs/access_log combined

#
# Optionally add a line containing the server version and virtual host
# name to server-generated pages (internal error documents, FTP directory
# listings, mod_status and mod_info output etc., but not CGI generated
# documents or custom error documents).
# Set to "EMail" to also include a mailto: link to the ServerAdmin.
# Set to one of:  On | Off | EMail
#
ServerSignature On

#
# Aliases: Add here as many aliases as you need (with no limit). The format is
# Alias fakename realname
#
# Note that if you include a trailing / on fakename then the server will
# require it to be present in the URL.  So "/icons" isn't aliased in this
# example, only "/icons/".  If the fakename is slash-terminated, then the
# realname must also be slash terminated, and if the fakename omits the
# trailing slash, the realname must also omit it.
#
# We include the /icons/ alias for FancyIndexed directory listings.  If you
# do not use FancyIndexing, you may comment this out.
#
Alias /icons/ "/var/www/icons/"

<Directory "/var/www/icons">
    Options Indexes MultiViews FollowSymLinks
    AllowOverride None
    Order allow,deny
    Allow from all
</Directory>

#
# WebDAV module configuration section.
#
<IfModule mod_dav_fs.c>
    # Location of the WebDAV lock database.
    DAVLockDB /var/lib/dav/lockdb
</IfModule>

#
# ScriptAlias: This controls which directories contain server scripts.
# ScriptAliases are essentially the same as Aliases, except that
# documents in the realname directory are treated as applications and
# run by the server when requested rather than as documents sent to the client.
# The same rules about trailing "/" apply to ScriptAlias directives as to
# Alias.
#
ScriptAlias /cgi-bin/ "/var/www/cgi-bin/"

#
# "/var/www/cgi-bin" should be changed to whatever your ScriptAliased
# CGI directory exists, if you have that configured.
#
<Directory "/var/www/cgi-bin">
    AllowOverride None
    Options None
    Order allow,deny
    Allow from all
</Directory>

#
# Redirect allows you to tell clients about documents which used to exist in
# your server's namespace, but do not anymore. This allows you to tell the
# clients where to look for the relocated document.
# Example:
# Redirect permanent /foo http://www.example.com/bar

#
# Directives controlling the display of server-generated directory listings.
#

#
# IndexOptions: Controls the appearance of server-generated directory
# listings.
#
IndexOptions FancyIndexing VersionSort NameWidth=* HTMLTable Charset=UTF-8

#
# AddIcon* directives tell the server which icon to show for different
# files or filename extensions.  These are only displayed for
# FancyIndexed directories.
#
AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip

AddIconByType (TXT,/icons/text.gif) text/*
AddIconByType (IMG,/icons/image2.gif) image/*
AddIconByType (SND,/icons/sound2.gif) audio/*
AddIconByType (VID,/icons/movie.gif) video/*

AddIcon /icons/binary.gif .bin .exe
AddIcon /icons/binhex.gif .hqx
AddIcon /icons/tar.gif .tar
AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
AddIcon /icons/a.gif .ps .ai .eps
AddIcon /icons/layout.gif .html .shtml .htm .pdf
AddIcon /icons/text.gif .txt
AddIcon /icons/c.gif .c
AddIcon /icons/p.gif .pl .py
AddIcon /icons/f.gif .for
AddIcon /icons/dvi.gif .dvi
AddIcon /icons/uuencoded.gif .uu
AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
AddIcon /icons/tex.gif .tex
AddIcon /icons/bomb.gif core

AddIcon /icons/back.gif ..
AddIcon /icons/hand.right.gif README
AddIcon /icons/folder.gif ^^DIRECTORY^^
AddIcon /icons/blank.gif ^^BLANKICON^^

#
# DefaultIcon is which icon to show for files which do not have an icon
# explicitly set.
#
DefaultIcon /icons/unknown.gif

#
# AddDescription allows you to place a short description after a file in
# server-generated indexes.  These are only displayed for FancyIndexed
# directories.
# Format: AddDescription "description" filename
#
#AddDescription "GZIP compressed document" .gz
#AddDescription "tar archive" .tar
#AddDescription "GZIP compressed tar archive" .tgz

#
# ReadmeName is the name of the README file the server will look for by
# default, and append to directory listings.
#
# HeaderName is the name of a file which should be prepended to
# directory indexes.
ReadmeName README.html
HeaderName HEADER.html

#
# IndexIgnore is a set of filenames which directory indexing should ignore
# and not include in the listing.  Shell-style wildcarding is permitted.
#
IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t

#
# DefaultLanguage and AddLanguage allows you to specify the language of
# a document. You can then use content negotiation to give a browser a
# file in a language the user can understand.
#
# Specify a default language. This means that all data
# going out without a specific language tag (see below) will
# be marked with this one. You probably do NOT want to set
# this unless you are sure it is correct for all cases.
#
# * It is generally better to not mark a page as
# * being a certain language than marking it with the wrong
# * language!
#
# DefaultLanguage nl
#
# Note 1: The suffix does not have to be the same as the language
# keyword --- those with documents in Polish (whose net-standard
# language code is pl) may wish to use "AddLanguage pl .po" to
# avoid the ambiguity with the common suffix for perl scripts.
#
# Note 2: The example entries below illustrate that in some cases
# the two character 'Language' abbreviation is not identical to
# the two character 'Country' code for its country,
# E.g. 'Danmark/dk' versus 'Danish/da'.
#
# Note 3: In the case of 'ltz' we violate the RFC by using a three char
# specifier. There is 'work in progress' to fix this and get
# the reference data for rfc1766 cleaned up.
#
# Catalan (ca) - Croatian (hr) - Czech (cs) - Danish (da) - Dutch (nl)
# English (en) - Esperanto (eo) - Estonian (et) - French (fr) - German (de)
# Greek-Modern (el) - Hebrew (he) - Italian (it) - Japanese (ja)
# Korean (ko) - Luxembourgeois* (ltz) - Norwegian Nynorsk (nn)
# Norwegian (no) - Polish (pl) - Portugese (pt)
# Brazilian Portuguese (pt-BR) - Russian (ru) - Swedish (sv)
# Simplified Chinese (zh-CN) - Spanish (es) - Traditional Chinese (zh-TW)
#
AddLanguage ca .ca
AddLanguage cs .cz .cs
AddLanguage da .dk
AddLanguage de .de
AddLanguage el .el
AddLanguage en .en
AddLanguage eo .eo
AddLanguage es .es
AddLanguage et .et
AddLanguage fr .fr
AddLanguage he .he
AddLanguage hr .hr
AddLanguage it .it
AddLanguage ja .ja
AddLanguage ko .ko
AddLanguage ltz .ltz
AddLanguage nl .nl
AddLanguage nn .nn
AddLanguage no .no
AddLanguage pl .po
AddLanguage pt .pt
AddLanguage pt-BR .pt-br
AddLanguage ru .ru
AddLanguage sv .sv
AddLanguage zh-CN .zh-cn
AddLanguage zh-TW .zh-tw

#
# LanguagePriority allows you to give precedence to some languages
# in case of a tie during content negotiation.
#
# Just list the languages in decreasing order of preference. We have
# more or less alphabetized them here. You probably want to change this.
#
LanguagePriority en ca cs da de el eo es et fr he hr it ja ko ltz nl nn no pl pt pt-BR ru sv zh-CN zh-TW

#
# ForceLanguagePriority allows you to serve a result page rather than
# MULTIPLE CHOICES (Prefer) [in case of a tie] or NOT ACCEPTABLE (Fallback)
# [in case no accepted languages matched the available variants]
#
ForceLanguagePriority Prefer Fallback

#
# Specify a default charset for all content served; this enables
# interpretation of all content as UTF-8 by default.  To use the
# default browser choice (ISO-8859-1), or to allow the META tags
# in HTML content to override this choice, comment out this
# directive:
#
AddDefaultCharset UTF-8

#
# AddType allows you to add to or override the MIME configuration
# file mime.types for specific file types.
#
#AddType application/x-tar .tgz

#
# AddEncoding allows you to have certain browsers uncompress
# information on the fly. Note: Not all browsers support this.
# Despite the name similarity, the following Add* directives have nothing
# to do with the FancyIndexing customization directives above.
#
#AddEncoding x-compress .Z
#AddEncoding x-gzip .gz .tgz

# If the AddEncoding directives above are commented-out, then you
# probably should define those extensions to indicate media types:
#
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz

#
#   MIME-types for downloading Certificates and CRLs
#
AddType application/x-x509-ca-cert .crt
AddType application/x-pkcs7-crl    .crl

#
# AddHandler allows you to map certain file extensions to "handlers":
# actions unrelated to filetype. These can be either built into the server
# or added with the Action directive (see below)
#
# To use CGI scripts outside of ScriptAliased directories:
# (You will also need to add "ExecCGI" to the "Options" directive.)
#
#AddHandler cgi-script .cgi

#
# For files that include their own HTTP headers:
#
#AddHandler send-as-is asis

#
# For type maps (negotiated resources):
# (This is enabled by default to allow the Apache "It Worked" page
#  to be distributed in multiple languages.)
#
AddHandler type-map var

#
# Filters allow you to process content before it is sent to the client.
#
# To parse .shtml files for server-side includes (SSI):
# (You will also need to add "Includes" to the "Options" directive.)
#
AddType text/html .shtml
AddOutputFilter INCLUDES .shtml

#
# Action lets you define media types that will execute a script whenever
# a matching file is called. This eliminates the need for repeated URL
# pathnames for oft-used CGI file processors.
# Format: Action media/type /cgi-script/location
# Format: Action handler-name /cgi-script/location
#

#
# Customizable error responses come in three flavors:
# 1) plain text 2) local redirects 3) external redirects
#
# Some examples:
#ErrorDocument 500 "The server made a boo boo."
#ErrorDocument 404 /missing.html
#ErrorDocument 404 "/cgi-bin/missing_handler.pl"
#ErrorDocument 402 http://www.example.com/subscription_info.html
#

#
# Putting this all together, we can internationalize error responses.
#
# We use Alias to redirect any /error/HTTP_<error>.html.var response to
# our collection of by-error message multi-language collections.  We use
# includes to substitute the appropriate text.
#
# You can modify the messages' appearance without changing any of the
# default HTTP_<error>.html.var files by adding the line:
#
#   Alias /error/include/ "/your/include/path/"
#
# which allows you to create your own set of files by starting with the
# /var/www/error/include/ files and
# copying them to /your/include/path/, even on a per-VirtualHost basis.
#

Alias /error/ "/var/www/error/"

<IfModule mod_negotiation.c>
<IfModule mod_include.c>
    <Directory "/var/www/error">
        AllowOverride None
        Options IncludesNoExec
        AddOutputFilter Includes html
        AddHandler type-map var
        Order allow,deny
        Allow from all
        LanguagePriority en es de fr
        ForceLanguagePriority Prefer Fallback
    </Directory>

#    ErrorDocument 400 /error/HTTP_BAD_REQUEST.html.var
#    ErrorDocument 401 /error/HTTP_UNAUTHORIZED.html.var
#    ErrorDocument 403 /error/HTTP_FORBIDDEN.html.var
#    ErrorDocument 404 /error/HTTP_NOT_FOUND.html.var
#    ErrorDocument 405 /error/HTTP_METHOD_NOT_ALLOWED.html.var
#    ErrorDocument 408 /error/HTTP_REQUEST_TIME_OUT.html.var
#    ErrorDocument 410 /error/HTTP_GONE.html.var
#    ErrorDocument 411 /error/HTTP_LENGTH_REQUIRED.html.var
#    ErrorDocument 412 /error/HTTP_PRECONDITION_FAILED.html.var
#    ErrorDocument 413 /error/HTTP_REQUEST_ENTITY_TOO_LARGE.html.var
#    ErrorDocument 414 /error/HTTP_REQUEST_URI_TOO_LARGE.html.var
#    ErrorDocument 415 /error/HTTP_UNSUPPORTED_MEDIA_TYPE.html.var
#    ErrorDocument 500 /error/HTTP_INTERNAL_SERVER_ERROR.html.var
#    ErrorDocument 501 /error/HTTP_NOT_IMPLEMENTED.html.var
#    ErrorDocument 502 /error/HTTP_BAD_GATEWAY.html.var
#    ErrorDocument 503 /error/HTTP_SERVICE_UNAVAILABLE.html.var
#    ErrorDocument 506 /error/HTTP_VARIANT_ALSO_VARIES.html.var

</IfModule>
</IfModule>

#
# The following directives modify normal HTTP response behavior to
# handle known problems with browser implementations.
#
BrowserMatch "Mozilla/2" nokeepalive
BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0
BrowserMatch "RealPlayer 4\.0" force-response-1.0
BrowserMatch "Java/1\.0" force-response-1.0
BrowserMatch "JDK/1\.0" force-response-1.0

#
# The following directive disables redirects on non-GET requests for
# a directory that does not include the trailing slash.  This fixes a
# problem with Microsoft WebFolders which does not appropriately handle
# redirects for folders with DAV methods.
# Same deal with Apple's DAV filesystem and Gnome VFS support for DAV.
#
BrowserMatch "Microsoft Data Access Internet Publishing Provider" redirect-carefully
BrowserMatch "MS FrontPage" redirect-carefully
BrowserMatch "^WebDrive" redirect-carefully
BrowserMatch "^WebDAVFS/1.[0123]" redirect-carefully
BrowserMatch "^gnome-vfs/1.0" redirect-carefully
BrowserMatch "^XML Spy" redirect-carefully
BrowserMatch "^Dreamweaver-WebDAV-SCM1" redirect-carefully

#
# Allow server status reports generated by mod_status,
# with the URL of http://servername/server-status
# Change the ".example.com" to match your domain to enable.
#
#<Location /server-status>
#    SetHandler server-status
#    Order deny,allow
#    Deny from all
#    Allow from .example.com
#</Location>

#
# Allow remote server configuration reports, with the URL of
#  http://servername/server-info (requires that mod_info.c be loaded).
# Change the ".example.com" to match your domain to enable.
#
#<Location /server-info>
#    SetHandler server-info
#    Order deny,allow
#    Deny from all
#    Allow from .example.com
#</Location>

#
# Proxy Server directives. Uncomment the following lines to
# enable the proxy server:
#
#<IfModule mod_proxy.c>
#ProxyRequests On
#
#<Proxy *>
#    Order deny,allow
#    Deny from all
#    Allow from .example.com
#</Proxy>

#
# Enable/disable the handling of HTTP/1.1 "Via:" headers.
# ("Full" adds the server version; "Block" removes all outgoing Via: headers)
# Set to one of: Off | On | Full | Block
#
#ProxyVia On

#
# To enable a cache of proxied content, uncomment the following lines.
# See http://httpd.apache.org/docs/2.2/mod/mod_cache.html for more details.
#
#<IfModule mod_disk_cache.c>
#   CacheEnable disk /
#   CacheRoot "/var/cache/mod_proxy"
#</IfModule>
#

#</IfModule>
# End of proxy directives.

### Section 3: Virtual Hosts
#
# VirtualHost: If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most configurations
# use only name-based virtual hosts so the server doesn't need to worry about
# IP addresses. This is indicated by the asterisks in the directives below.
#
# Please see the documentation at
# <URL:http://httpd.apache.org/docs/2.2/vhosts/>
# for further details before you try to setup virtual hosts.
#
# You may use the command line option '-S' to verify your virtual host
# configuration.

#
# Use name-based virtual hosting.
#
#NameVirtualHost *:80
#
# NOTE: NameVirtualHost cannot be used without a port specifier
# (e.g. :80) if mod_ssl is being used, due to the nature of the
# SSL protocol.
#

#
# VirtualHost example:
# Almost any Apache directive may go into a VirtualHost container.
# The first VirtualHost section is used for requests without a known
# server name.
#
#<VirtualHost *:80>
#    ServerAdmin [email protected]
#    DocumentRoot /www/docs/dummy-host.example.com
#    ServerName dummy-host.example.com
#    ErrorLog logs/dummy-host.example.com-error_log
#    CustomLog logs/dummy-host.example.com-access_log common
#</VirtualHost>
Our files differ a bit - but nothing is jumping out at me.

You might try checking out the error log - there may be some good information in there as well:
tail -n50 /var/log/httpd/error_log
tail -n50 /var/log/httpd/access_log
Twits Blog
Show me a man who lives alone and has a perpetually clean kitchen, and 8 times out of 9 I'll show you a man with detestable spiritual qualities.
User avatar
BanditBBS
Posts: 2474
Joined: Tue May 31, 2011 12:57 pm
Location: Scio, OH
Contact:

Re: 500 Server error

Post by BanditBBS »

No go :(

Nothing in the error_log except from when I restarted httpd and that's expected.

This is in the access log:

Code: Select all

10.150.253.1 - - [15/Jan/2016:14:46:18 -0600] "GET /nagioslogserver/admin/cluster HTTP/1.1" 500 - "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36"
Edit: Can I just do a fullinstall over current without losing stuff?
2 of XI5.6.14 Prod/DR/DEV - Nagios LogServer 2 Nodes
See my projects on the Exchange at BanditBBS - Also check out my Nagios stuff on my personal page at Bandit's Home and at github
jolson
Attack Rabbit
Posts: 2560
Joined: Thu Feb 12, 2015 12:40 pm

Re: 500 Server error

Post by jolson »

Can I just do a fullinstall over current without losing stuff?
Running a fullinstall might mess things up - could you try running an upgrade instead? We can resort to a special uninstall/reinstall that will leave your data intact, but I'd like to see if an upgrade helps first.
Twits Blog
Show me a man who lives alone and has a perpetually clean kitchen, and 8 times out of 9 I'll show you a man with detestable spiritual qualities.
User avatar
BanditBBS
Posts: 2474
Joined: Tue May 31, 2011 12:57 pm
Location: Scio, OH
Contact:

Re: 500 Server error

Post by BanditBBS »

jolson wrote:
Can I just do a fullinstall over current without losing stuff?
Running a fullinstall might mess things up - could you try running an upgrade instead? We can resort to a special uninstall/reinstall that will leave your data intact, but I'd like to see if an upgrade helps first.
I tried an upgrade on Friday and it had to effect.
2 of XI5.6.14 Prod/DR/DEV - Nagios LogServer 2 Nodes
See my projects on the Exchange at BanditBBS - Also check out my Nagios stuff on my personal page at Bandit's Home and at github
jolson
Attack Rabbit
Posts: 2560
Joined: Thu Feb 12, 2015 12:40 pm

Re: 500 Server error

Post by jolson »

The only things that could matter are the kibana-int database and apache, since they're responsible for the frontend. I think that running a fullinstall is risky - the fullinstall script is not intended to be run on a system that's already up and running.

That being said, I tested running a fullinstall over a working server on my lab box, and it worked just fine - settings and data was not written-over, and I noticed nothing wrong.

If you have a working backup or snapshot of the system in question, feel free to give fullinstall a shot - it might work out! If not, be sure to store your NLS backups for later processing (in case we need them):

Code: Select all

cp /store/backups/nagioslogserver/* ~/
Let me know, thanks!
Twits Blog
Show me a man who lives alone and has a perpetually clean kitchen, and 8 times out of 9 I'll show you a man with detestable spiritual qualities.
User avatar
BanditBBS
Posts: 2474
Joined: Tue May 31, 2011 12:57 pm
Location: Scio, OH
Contact:

Re: 500 Server error

Post by BanditBBS »

Did a fullinstall on one of the nodes andno change, still the 500 error going to /nagioslogserver/admin or /nagioslogserver/admin/index_status or /nagioslogserver/admin/cluster
2 of XI5.6.14 Prod/DR/DEV - Nagios LogServer 2 Nodes
See my projects on the Exchange at BanditBBS - Also check out my Nagios stuff on my personal page at Bandit's Home and at github
jolson
Attack Rabbit
Posts: 2560
Joined: Thu Feb 12, 2015 12:40 pm

Re: 500 Server error

Post by jolson »

Please see my PM - attached is my entire working web directory. Please move wwwnaglog.tar.gz to your server and give this procedure a try:

Code: Select all

cd /var/www/html
mv ~/wwwnaglog.tar.gz .
mv nagioslogserver ~/
tar zxpf wwwnaglog.tar.gz
After extracting the directory, let me know if things improve. If this doesn't help, it's likely a Kibana problem and we'll attempt a couple of restores at that point.

Jesse
Twits Blog
Show me a man who lives alone and has a perpetually clean kitchen, and 8 times out of 9 I'll show you a man with detestable spiritual qualities.
User avatar
BanditBBS
Posts: 2474
Joined: Tue May 31, 2011 12:57 pm
Location: Scio, OH
Contact:

Re: 500 Server error

Post by BanditBBS »

Made no change, still the same issue.
2 of XI5.6.14 Prod/DR/DEV - Nagios LogServer 2 Nodes
See my projects on the Exchange at BanditBBS - Also check out my Nagios stuff on my personal page at Bandit's Home and at github
Locked