Moin Reindl,

> Gibt es irgendeine Möglichkeit in der "httpd.conf"
> anahnd des aktuellen Hostname der Maschine also
> nicht des Requests/Domain-Namens ein unterschiedliches
> Include einzubinden?

> if [ "$HOSTNAME" == "rh.thelounge.net" ]; then
>  Include "conf/ssl.conf-workstation"
> else
>  Include "conf/ssl.conf-srv"
> fi

ja das geht. IfDefine[1] ist dein Freund.
--- httpd.conf ---
<IfDefine workstation>
Include "conf/ssl.conf-workstation"
</IfDefine>
<IfDefine !workstation>
 Include "conf/ssl.conf-srv"
</IfDefine>
--- /httpd.conf ---

Auf deiner workstation müßtest Du dann den apache mit httpd
-Dworkstation starten.

Den -D Parameter könntest Du ja in deinem shell script setzen bzw. nicht setzen.


Gruß
Mario

[1] http://httpd.apache.org/docs/2.2/mod/core.html#ifdefine

--------------------------------------------------------------------------
                Apache HTTP Server Mailing List "users-de"
      unsubscribe-Anfragen an users-de-unsubscr...@httpd.apache.org
           sonstige Anfragen an users-de-h...@httpd.apache.org
--------------------------------------------------------------------------

Antwort per Email an