Das Ethernet läuft, mit NFS.
Ja, verkehrt herum ausgedrückt.
Missverständlich sowieso das ganze:
- Ethernet läuft, mit fest vergebenen IPs
- Apache läuft, ist aber nur auf localhost erreichbar.
- die lokalen Dateien sind via NFS auf dem anderen Rechner erreichbar (hat damit nichts zu tun, ich weiß)
- und der Webserver soll auch auf dem anderen Rechner erreichbar werden
- eine Firewall habe ich nicht eingerichtet und vermute, daß sowas hier nicht läuft (in bescheidener Ahnungslosigkeit)
...soweit ist das also bereits konfiguriert (ich bin Anfänger)
Jetzt kommt hier die "httpd.conf":
Code:
ServerRoot "/usr"
listen 127.0.0.1:80
ServerName localhost:80
...
LoadModule authz_host_module lib/httpd/modules/mod_authz_host.so
...
<IfModule !mpm_netware_module>
<IfModule !mpm_winnt_module>
User apache
Group apache
</IfModule>
</IfModule>
ServerAdmin you@example.com
DocumentRoot "/srv/httpd/htdocs"
<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
</Directory>
<Directory "/srv/httpd/htdocs">
Options Indexes FollowSymLinks
AllowOverride All
#=======================
Order allow,deny
Allow from all
#=======================
</Directory>
<IfModule dir_module>
DirectoryIndex index.html
</IfModule>
<FilesMatch "^\.ht">
Order allow,deny
Deny from all
Satisfy All
</FilesMatch>
ErrorLog "/var/log/httpd/error_log"
LogLevel warn
<IfModule log_config_module>
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
<IfModule logio_module>
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
</IfModule>
CustomLog "/var/log/httpd/access_log" common
</IfModule>
<IfModule alias_module>
ScriptAlias /cgi-bin/ "/srv/httpd/cgi-bin/"
</IfModule>
<Directory "/srv/httpd/cgi-bin">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
DefaultType text/plain
<IfModule mime_module>
TypesConfig /etc/httpd/mime.types
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
</IfModule>
<IfModule ssl_module>
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
</IfModule>
Include /etc/httpd/mod_php.conf
Bedeutet das folgende nicht, daß der Server generell (also auch übers Internet) erreichbar sein sollte?
<Directory "/srv/httpd/htdocs">
Order allow,deny
Allow from all
</Directory>
Aber wie gesagt, habe zu wenig Ahnung davon.
Darum ist oben die gesamte Config mitgegeben, nur bei der langen Liste zu ladender Module hab ich gekürzt.