AVIS AUX MODOS Merci de ne pas supprimer ce topic. C'est balot: je l'avais mis en double (par erreur), quand je m'en suis rendu compte j'en ai supprimé un et vous avez supprimé l'autre; MERCI!
Mon Probléme
J'ai installé apache 1.3.31 avec les options suivantes:
Code :
- ./configure --prefix=/etc/apache --disable-module=all --server-uid=www-data --server-gid=www-data --enable-module=access --enable-module=log_config --enable-module=dir --enable-module=mime --enable-module=auth
|
Mon httpd.conf
Code :
- # =================================================
- # Basic settings
- # =================================================
- ServerType standalone
- # Location des fichiers de Apache
- ServerRoot "/etc/apache"
- PidFile /usr/local/apache/logs/httpd.pid
- ScoreBoardFile /usr/local/apache/logs/httpd.scoreboard
- ResourceConfig /dev/null
- AccessConfig /dev/null
- # =================================================
- # Performance settings
- # =================================================
- Timeout 300
- KeepAlive On
- MaxKeepAliveRequests 100
- KeepAliveTimeout 15
- MinSpareServers 5
- MaxSpareServers 10
- StartServers 5
- MaxClients 150
- MaxRequestsPerChild 0
- # =================================================
- # Apaches modules
- # =================================================
- ClearModuleList
- AddModule mod_log_config.c
- AddModule mod_mime.c
- AddModule mod_dir.c
- AddModule mod_access.c
- AddModule mod_auth.c
- # =================================================
- # General settings
- # =================================================
- Port 80
- User www-data
- Group www-data
- ServerAdmin (Mon Email)
- UseCanonicalName Off
- ServerSignature Off
- HostnameLookups Off
- ServerTokens Prod
- <IfModule mod_dir.c>
- DirectoryIndex index.html
- </IfModule>
- DocumentRoot "/web"
- ServerName "Cerise"
- # =================================================
- # Access control
- # =================================================
- <Directory />
- Options None
- AllowOverride None
- Order deny,allow
- Deny from all
- </Directory>
- <Directory "/web">
- Order allow,deny
- Allow from all
- </Directory>
- # =================================================
- # MIME encoding
- # =================================================
- <IfModule mod_mime.c>
- TypesConfig /usr/local/apache/conf/mime.types
- </IfModule>
- DefaultType text/plain
- <IfModule mod_mime.c>
- AddEncoding x-compress Z
- AddEncoding x-gzip gz tgz
- AddType application/x-tar .tgz
- </IfModule>
- # =================================================
- # Logs
- # =================================================
- LogLevel warn
- 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
- ErrorLog /etc/apache/logs/error_log
- CustomLog /etc/apache/logs/access_log combined
|
J'ai copié /etc/apache/bin/apachectl vers /etc/init.d/apache
Je veux le lancer:
Code :
- [root@cerise /web] /etc/init.d/apache start
- /etc/init.d/apache start: httpd could not be started
|
Nota: le site doit être dansune partion montée par fstab du nom de /web
Code :
- /dev/sda2 /web ext3 defaults 0 0
|
Message édité par nicephore17 le 27-06-2004 à 21:22:37
---------------
Mac Pro powered (sorry)