Problem auf der Baustelle...
OK, ich hab es hingekriegt, dass auf meinem linux-server jukebox.radiox.ch antclick läuft (das war noch sehr einfach!). Den Zugang dazu gibt's auf jukebox.radiox.ch:8080. Ebenfalls klappt das mit den DNS wildcards: (irgendwas).radiox.ch:8080 geht immer auf denselben Server. Aber genau da ist noch ein Problem. (weblognamexy).radiox.ch:8080 zeigt immer die Startseite, also dasselbe wie jukebox.radiox.ch:8080 und nicht - wie es sein sollte - den Weblog XY. Hab ich was vergessen oder falsch verstanden? Danke für Tipps!
tobi Verwaltung
did you add appropriate apache rewrite rules?
patpatpat
at the risk of looking stupid: do I really have to? i don't use apache (which is present too of course, but on port 80). i stay with antville / antclick all the time, as i only use port 8080. but if you tell me how i can do rewriting of (weblogwhatever).radiox.ch to weblogwhatever.radiox.ch:8080 so that the right weblog shows up, I owe you something, really!!
hannes
to use mod_proxy. Search for mod_proxy on this site...
patpatpat
Damit:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^[^.]+\.radiox\.ch$
RewriteCond %{HTTP_HOST} !^www.radiox.ch$
RewriteRule ^(.+) %{HTTP_HOST}$1 [C]
RewriteRule ^(.*)\.radiox\.ch(.*) http://jukebox.radiox.ch:8080/$1$2 [L,R]
nicht perfekt, aber es geht. damit landet alles was an
http://weblogname.radiox.ch geht bei
http://jukebox.radiox.ch:8080/weblogname/
abgeschaut hier:
http://helma.org/archives/hop/2001-October/000791.html
Merci!