/etc/inittab
#example entry
netview:23:wait:/etc/netnmrc #Start netview
#modifiy start map ...
/usr/OV/app-defaults/OVw #startinit
/usr/OV/conf/ovsuf #daemons started by netview

AIX,Apache
/etc/apache/httpd.conf //Einstellungen
/usr/local/bin/apachectl //starten/stoppen
/usr/local/share/apache/htdocs //Document Root Directory
/var/apache/log/error_log //standard log file

add Alias Directory
in file /etc/apache/httpd.conf
Alias /Nways "/usr/tmp/"
<Directory "/usr/tmp">
Options Indexes MultiViews //you may see directory structure then
Order allow,deny
Allow from all
</Directory>

-> Test this in Browser: 127.0.0.1/Nways should work after restarting httpd

#disable apache
comment out: Listen *.:80 & Port 80

#enable ssl
rpm -i mod_ssl-2.8.4-9.s390.rpm

#mod_proxy
#apache module -> forward https-requests to other http ports ...

<ifModule mod_proxy.c>
ProxyRequest On
ProxyPass /vdradmin http://192.168.0.x:8012/
</ifModule>


#ssl redirect
#added by mwendig, 03.12.2004
#redirect to ssl
RewriteEngine On

RewriteCond %{SERVER_PORT} !^443$
RewriteRule ^/cgi-bin/(.*)$ https://10.0.0.1/cgi-bin/$1 [L,R]

#apache suse
SuSEconfig --module apache

computer2know :: thank you for your visit :: have a nice day :: © 2024