Proxy setting strips CSS and Javascript

I have another issue with Apache. When I use it as a proxy, the page
is stripped off the CSS and javascript.

Here is the rule I use:

RewriteCond %{REQUEST_URI} survey08app
RewriteCond %{REQUEST_URI} !(userAdmin)
RewriteRule ^.*$ http://192.168.5.10/survey08app/loginForm.htm [L,P]

If I take out the P for Proxy, everything looks fine sans the URL. I
used P in the first place to not show the IP address 192.168.5.10.

There is something basic that I am missing. Your kind help is
appreciated.
Thanks
souporpower [ Mi, 02 April 2008 21:33 ] [ ID #1933880 ]

Re: Proxy setting strips CSS and Javascript

<souporpower [at] gmail.com> schreef in bericht
news:94bb9835-0321-4816-8769-c78e426c063a [at] x41g2000hsb.google groups.com...
>I have another issue with Apache. When I use it as a proxy, the page
> is stripped off the CSS and javascript.
>
> Here is the rule I use:
>
> RewriteCond %{REQUEST_URI} survey08app
> RewriteCond %{REQUEST_URI} !(userAdmin)
> RewriteRule ^.*$ http://192.168.5.10/survey08app/loginForm.htm [L,P]
>
> If I take out the P for Proxy, everything looks fine sans the URL. I
> used P in the first place to not show the IP address 192.168.5.10.
>
> There is something basic that I am missing. Your kind help is
> appreciated.
Rather than rewriterules try mod_proxy and freinds (assuming version 2.2)
http://httpd.apache.org/docs/2.2/mod/mod_proxy.html

HansH
HansH [ Mi, 02 April 2008 22:41 ] [ ID #1933881 ]

Re: Proxy setting strips CSS and Javascript

souporpower [at] gmail.com wrote:
> I have another issue with Apache. When I use it as a proxy, the page
> is stripped off the CSS and javascript.
>
> Here is the rule I use:
>
> RewriteCond %{REQUEST_URI} survey08app
> RewriteCond %{REQUEST_URI} !(userAdmin)
> RewriteRule ^.*$ http://192.168.5.10/survey08app/loginForm.htm [L,P]
>
> If I take out the P for Proxy, everything looks fine sans the URL. I
> used P in the first place to not show the IP address 192.168.5.10.

if you're proxying a page hosted on 192.168.5.10 that instructs the browser to
load additional files (such as cascading stylesheets and javascript) that are
also hosted on 192.168.5.10, then you either need to proxy those additional
assets, or move them onto a publicly-accessible web server and rewrite the web
content to point at their new public location.

if http://192.168.5.10/survey08app/loginForm.htm contains instructions like
<link rel=css href=/survey08app/loginForm.css> and <script
src=/survey08app/loginForm.js> -- the web browser is going to request those from
your public server, and you'll need to host them publicly or proxy those files
as well.

you might try something lazy and just proxy everything that falls under a
certain directory, along the lines of:

RewriteRule ^/survey08app/(.*)$ http://192.168.5.10/survey08app/$1 [L,P]

so if your user's browser requests any of

/survey08app/loginform.php
/survey08app/loginform.css
/survey08app/someotherfile.etc.etc

those are proxied from

http://192.168.5.10/survey08app/loginform.php
http://192.168.5.10/survey08app/loginform.css
http://192.168.5.10/survey08app/someotherfile.etc.etc

respectively.

--sean

--
sean dreilinger - http://durak.org/sean/
sean dreilinger [ Do, 03 April 2008 04:43 ] [ ID #1934808 ]

Re: Proxy setting strips CSS and Javascript

On Apr 2, 10:43=A0pm, sean dreilinger <sean-use... [at] durak.org> wrote:
> souporpo... [at] gmail.com wrote:
> > I have another issue with Apache. When I use it as a proxy, the page
> > is stripped off the CSS and javascript.
>
> > Here is the rule I use:
>
> > RewriteCond %{REQUEST_URI} survey08app
> > RewriteCond %{REQUEST_URI} !(userAdmin)
> > RewriteRule ^.*$http://192.168.5.10/survey08app/loginForm.htm=A0[L,P]
>
> > If I take out the P for Proxy, everything looks fine sans the URL. I
> > used P =A0in the first place to not show the IP address 192.168.5.10.
>
> if you're proxying a page hosted on 192.168.5.10 that instructs the browse=
r to
> load additional files (such as cascading stylesheets and javascript) that =
are
> also hosted on 192.168.5.10, then you either need to proxy those additiona=
l
> assets, or move them onto a publicly-accessible web server and rewrite the=
web
> content to point at their new public location.
>
> ifhttp://192.168.5.10/survey08app/loginForm.htmcontains instructions like
> <link rel=3Dcss href=3D/survey08app/loginForm.css> and <script
> src=3D/survey08app/loginForm.js> -- the web browser is going to request th=
ose from
> your public server, and you'll need to host them publicly or proxy those f=
iles
> as well.
>
> you might try something lazy and just proxy everything that falls under a
> certain directory, along the lines of:
>
> RewriteRule ^/survey08app/(.*)$http://192.168.5.10/survey08app/$1[L,P]
>
> so if your user's browser requests any of
>
> =A0 =A0 =A0 =A0 /survey08app/loginform.php
> =A0 =A0 =A0 =A0 /survey08app/loginform.css
> =A0 =A0 =A0 =A0 /survey08app/someotherfile.etc.etc
>
> those are proxied from
>
> =A0 =A0 =A0 =A0http://192.168.5.10/survey08app/loginform.php
> =A0 =A0 =A0 =A0http://192.168.5.10/survey08app/loginform.css
> =A0 =A0 =A0 =A0http://192.168.5.10/survey08app/someotherfile.etc.etc
>
> respectively.
>
> --sean
>
> --
> sean dreilinger -http://durak.org/sean/

Hi Sean
I changed the rule as you suggested.

The website in question has a login form. The user enters the email id
and if valid the next form is shown. For some reason, upon submission
of the form the IP address is shown. Whereas if I try the second page
with proxy in the URL, it works.

Let me try to illustrate this as follows:

http://proxy/survey08app/loginForm.htm ---> shows up correctly

Fill the form and expect http://proxy/survey08app/page2.htm
but instead I get http://192.168.5.10/survey08app/page2.htm

However, if I try http://proxy/survey08/page2.htm it shows up
correctly and I am able to complete the survey with proxy settings.

There is nothing special about page2 to prevent the proxy settings.

I'd appreciate your kind help.

Thanks
souporpower [ Do, 03 April 2008 14:54 ] [ ID #1934809 ]

Re: Proxy setting strips CSS and Javascript

<souporpower [at] gmail.com> schreef in bericht
news:14725e19-7051-4743-8c73-0239fe05b1c7 [at] c65g2000hsa.google groups.com...
On Apr 2, 10:43 pm, sean dreilinger <sean-use... [at] durak.org> wrote:
> The website in question has a login form. The user enters the email id
> and if valid the next form is shown. For some reason, upon submission
> of the form the IP address is shown. Whereas if I try the second page
> with proxy in the URL, it works.
>
> Let me try to illustrate this as follows:
>
> http://proxy/survey08app/loginForm.htm ---> shows up correctly
>
> Fill the form and expect http://proxy/survey08app/page2.htm
> but instead I get http://192.168.5.10/survey08app/page2.htm
>
> However, if I try http://proxy/survey08/page2.htm it shows up
> correctly and I am able to complete the survey with proxy settings.
>
> There is nothing special about page2 to prevent the proxy settings.
Check for missing or ampty action atribute at th <form ... > tag.
Check for JavaScript interfering the submit.


Just 2ct ...

HansH
HansH [ Do, 03 April 2008 15:44 ] [ ID #1934811 ]

Re: Proxy setting strips CSS and Javascript

On Apr 3, 9:44=A0am, "HansH" <ha... [at] invalid.invalid> wrote:
> <souporpo... [at] gmail.com> schreef in berichtnews:14725e19-7051-4743-8c73-023=
9fe05b1c7 [at] c65g2000hsa.googlegroups.com...
> On Apr 2, 10:43 pm, sean dreilinger <sean-use... [at] durak.org> wrote:
>
>
>
> > The website in question has a login form. The user enters the email id
> > and if valid the next form is shown. For some reason, upon =A0submission=

> > of the form the IP address is shown. Whereas if I try the second page
> > with proxy in the URL, it works.
>
> > Let me try to illustrate this as follows:
>
> >http://proxy/survey08app/loginForm.htm---> shows up correctly
>
> > Fill the form and expecthttp://proxy/survey08app/page2.htm
> > but instead I gethttp://192.168.5.10/survey08app/page2.htm
>
> > However, if I tryhttp://proxy/survey08/page2.htmit shows up
> > correctly and I am able to complete the survey with proxy settings.
>
> > There is nothing special about page2 to prevent the proxy settings.
>
> Check for missing or ampty action atribute at th <form ... > tag.
> Check for JavaScript interfering the submit.
>
> Just 2ct ...
>
> HansH- Hide quoted text -
>
> - Show quoted text -

All the objects/assets are referred relative to survey08app. I am able
to view all the pages individually by using proxy.

http://proxy/survey08app/page0 thru http://proxy/survey08app/pageend
are all accessible without a hitch.

Whereas, when I try clicking the submit button on page0 the proxy is
gone!

Thanks
souporpower [ Do, 03 April 2008 17:33 ] [ ID #1934812 ]

Re: Proxy setting strips CSS and Javascript

On Apr 3, 11:33=A0am, "souporpo... [at] gmail.com" <souporpo... [at] gmail.com>
wrote:
> On Apr 3, 9:44=A0am, "HansH" <ha... [at] invalid.invalid> wrote:
>
>
>
>
>
> > <souporpo... [at] gmail.com> schreef in berichtnews:14725e19-7051-4743-8c73-0=
239fe05b1c7 [at] c65g2000hsa.googlegroups.com...
> > On Apr 2, 10:43 pm, sean dreilinger <sean-use... [at] durak.org> wrote:
>
> > > The website in question has a login form. The user enters the email id=

> > > and if valid the next form is shown. For some reason, upon =A0submissi=
on
> > > of the form the IP address is shown. Whereas if I try the second page
> > > with proxy in the URL, it works.
>
> > > Let me try to illustrate this as follows:
>
> > >http://proxy/survey08app/loginForm.htm---> shows up correctly
>
> > > Fill the form and expecthttp://proxy/survey08app/page2.htm
> > > but instead I gethttp://192.168.5.10/survey08app/page2.htm
>
> > > However, if I tryhttp://proxy/survey08/page2.htmitshows up
> > > correctly and I am able to complete the survey with proxy settings.
>
> > > There is nothing special about page2 to prevent the proxy settings.
>
> > Check for missing or ampty action atribute at th <form ... > tag.
> > Check for JavaScript interfering the submit.
>
> > Just 2ct ...
>
> > HansH- Hide quoted text -
>
> > - Show quoted text -
>
> All the objects/assets are referred relative to survey08app. I am able
> to view all the pages individually by using proxy.
>
> http://proxy/survey08app/page0thruhttp://proxy/survey08app/p ageend
> are all accessible without a hitch.
>
> Whereas, when I try clicking the submit button on page0 the proxy is
> gone!
>
> Thanks- Hide quoted text -
>
> - Show quoted text -

I have one more piece of info to add. The app requires a session. It
seems the session is created upon submitting the login form.... is
there a way I can force apache to create a session if none specified
in the landing page? Approx the logic is:

a) serve the landing page
b) GET the landing page; create session; serve the second page
c) continue with survey on the same session

These pages are created for Spring framework (a Java nightmare :).

Used the QSA with P & L. Doesn't seem to make a diff.

Thanks
souporpower [ Do, 03 April 2008 21:50 ] [ ID #1934815 ]

Re: Proxy setting strips CSS and Javascript

On Apr 3, 3:50=A0pm, "souporpo... [at] gmail.com" <souporpo... [at] gmail.com>
wrote:
> On Apr 3, 11:33=A0am, "souporpo... [at] gmail.com" <souporpo... [at] gmail.com>
> wrote:
>
>
>
>
>
> > On Apr 3, 9:44=A0am, "HansH" <ha... [at] invalid.invalid> wrote:
>
> > > <souporpo... [at] gmail.com> schreef in berichtnews:14725e19-7051-4743-8c73=
-0239fe05b1c7 [at] c65g2000hsa.googlegroups.com...
> > > On Apr 2, 10:43 pm, sean dreilinger <sean-use... [at] durak.org> wrote:
>
> > > > The website in question has a login form. The user enters the email =
id
> > > > and if valid the next form is shown. For some reason, upon =A0submis=
sion
> > > > of the form the IP address is shown. Whereas if I try the second pag=
e
> > > > with proxy in the URL, it works.
>
> > > > Let me try to illustrate this as follows:
>
> > > >http://proxy/survey08app/loginForm.htm---> shows up correctly
>
> > > > Fill the form and expecthttp://proxy/survey08app/page2.htm
> > > > but instead I gethttp://192.168.5.10/survey08app/page2.htm
>
> > > > However, if I tryhttp://proxy/survey08/page2.htmitshowsup
> > > > correctly and I am able to complete the survey with proxy settings.
>
> > > > There is nothing special about page2 to prevent the proxy settings.
>
> > > Check for missing or ampty action atribute at th <form ... > tag.
> > > Check for JavaScript interfering the submit.
>
> > > Just 2ct ...
>
> > > HansH- Hide quoted text -
>
> > > - Show quoted text -
>
> > All the objects/assets are referred relative to survey08app. I am able
> > to view all the pages individually by using proxy.
>
> >http://proxy/survey08app/page0thruhttp://proxy/survey08app/ pageend
> > are all accessible without a hitch.
>
> > Whereas, when I try clicking the submit button on page0 the proxy is
> > gone!
>
> > Thanks- Hide quoted text -
>
> > - Show quoted text -
>
> I have one more piece of info to add. The app requires a session. It
> seems the session is created upon submitting the login form.... is
> there a way I can force apache to create a session if none specified
> in the landing page? Approx the logic is:
>
> a) serve the landing page
> b) GET the landing page; create session; serve the second page
> c) continue with survey on =A0the same session
>
> These pages are created for Spring framework (a Java nightmare :).
>
> Used the QSA with P & L. Doesn't seem to make a diff.
>
> Thanks- Hide quoted text -
>
> - Show quoted text -

Upgraded apache to 2.2.4 The problem still persists. Any help?
Thanks
souporpower [ Fr, 04 April 2008 17:54 ] [ ID #1935560 ]

Re: Proxy setting strips CSS and Javascript

On Apr 4, 11:54=A0am, "souporpo... [at] gmail.com" <souporpo... [at] gmail.com>
wrote:
> On Apr 3, 3:50=A0pm, "souporpo... [at] gmail.com" <souporpo... [at] gmail.com>
> wrote:
>
>
>
>
>
> > On Apr 3, 11:33=A0am, "souporpo... [at] gmail.com" <souporpo... [at] gmail.com>
> > wrote:
>
> > > On Apr 3, 9:44=A0am, "HansH" <ha... [at] invalid.invalid> wrote:
>
> > > > <souporpo... [at] gmail.com> schreef in berichtnews:14725e19-7051-4743-8c=
73-0239fe05b1c7 [at] c65g2000hsa.googlegroups.com...
> > > > On Apr 2, 10:43 pm, sean dreilinger <sean-use... [at] durak.org> wrote:
>
> > > > > The website in question has a login form. The user enters the emai=
l id
> > > > > and if valid the next form is shown. For some reason, upon =A0subm=
ission
> > > > > of the form the IP address is shown. Whereas if I try the second p=
age
> > > > > with proxy in the URL, it works.
>
> > > > > Let me try to illustrate this as follows:
>
> > > > >http://proxy/survey08app/loginForm.htm---> shows up correctly
>
> > > > > Fill the form and expecthttp://proxy/survey08app/page2.htm
> > > > > but instead I gethttp://192.168.5.10/survey08app/page2.htm
>
> > > > > However, if I tryhttp://proxy/survey08/page2.htmitshowsup
> > > > > correctly and I am able to complete the survey with proxy settings=
..
>
> > > > > There is nothing special about page2 to prevent the proxy settings=
..
>
> > > > Check for missing or ampty action atribute at th <form ... > tag.
> > > > Check for JavaScript interfering the submit.
>
> > > > Just 2ct ...
>
> > > > HansH- Hide quoted text -
>
> > > > - Show quoted text -
>
> > > All the objects/assets are referred relative to survey08app. I am able=

> > > to view all the pages individually by using proxy.
>
> > >http://proxy/survey08app/page0thruhttp://proxy/survey08app/ pageend
> > > are all accessible without a hitch.
>
> > > Whereas, when I try clicking the submit button on page0 the proxy is
> > > gone!
>
> > > Thanks- Hide quoted text -
>
> > > - Show quoted text -
>
> > I have one more piece of info to add. The app requires a session. It
> > seems the session is created upon submitting the login form.... is
> > there a way I can force apache to create a session if none specified
> > in the landing page? Approx the logic is:
>
> > a) serve the landing page
> > b) GET the landing page; create session; serve the second page
> > c) continue with survey on =A0the same session
>
> > These pages are created for Spring framework (a Java nightmare :).
>
> > Used the QSA with P & L. Doesn't seem to make a diff.
>
> > Thanks- Hide quoted text -
>
> > - Show quoted text -
>
> Upgraded apache to 2.2.4 The problem still persists. Any help?
> Thanks- Hide quoted text -
>
> - Show quoted text -

Tried the following after recompiling apache 2.2.4 distro with proxy
enabled:


<VirtualHost *:81>
ProxyRequests On
ProxyPass / http://192.168.5.10/
TransferLog "logs/proxy.log"
</virtualHost>

The login page appears correctly. Once the form is submitted the url
reverts back to 192.168.5.10
Please help.
Thanks
souporpower [ Mo, 07 April 2008 16:43 ] [ ID #1937192 ]

Re: Proxy setting strips CSS and Javascript

On Apr 4, 11:54=A0am, "souporpo... [at] gmail.com" <souporpo... [at] gmail.com>
wrote:
> On Apr 3, 3:50=A0pm, "souporpo... [at] gmail.com" <souporpo... [at] gmail.com>
> wrote:
>
>
>
>
>
> > On Apr 3, 11:33=A0am, "souporpo... [at] gmail.com" <souporpo... [at] gmail.com>
> > wrote:
>
> > > On Apr 3, 9:44=A0am, "HansH" <ha... [at] invalid.invalid> wrote:
>
> > > > <souporpo... [at] gmail.com> schreef in berichtnews:14725e19-7051-4743-8c=
73-0239fe05b1c7 [at] c65g2000hsa.googlegroups.com...
> > > > On Apr 2, 10:43 pm, sean dreilinger <sean-use... [at] durak.org> wrote:
>
> > > > > The website in question has a login form. The user enters the emai=
l id
> > > > > and if valid the next form is shown. For some reason, upon =A0subm=
ission
> > > > > of the form the IP address is shown. Whereas if I try the second p=
age
> > > > > with proxy in the URL, it works.
>
> > > > > Let me try to illustrate this as follows:
>
> > > > >http://proxy/survey08app/loginForm.htm---> shows up correctly
>
> > > > > Fill the form and expecthttp://proxy/survey08app/page2.htm
> > > > > but instead I gethttp://192.168.5.10/survey08app/page2.htm
>
> > > > > However, if I tryhttp://proxy/survey08/page2.htmitshowsup
> > > > > correctly and I am able to complete the survey with proxy settings=
..
>
> > > > > There is nothing special about page2 to prevent the proxy settings=
..
>
> > > > Check for missing or ampty action atribute at th <form ... > tag.
> > > > Check for JavaScript interfering the submit.
>
> > > > Just 2ct ...
>
> > > > HansH- Hide quoted text -
>
> > > > - Show quoted text -
>
> > > All the objects/assets are referred relative to survey08app. I am able=

> > > to view all the pages individually by using proxy.
>
> > >http://proxy/survey08app/page0thruhttp://proxy/survey08app/ pageend
> > > are all accessible without a hitch.
>
> > > Whereas, when I try clicking the submit button on page0 the proxy is
> > > gone!
>
> > > Thanks- Hide quoted text -
>
> > > - Show quoted text -
>
> > I have one more piece of info to add. The app requires a session. It
> > seems the session is created upon submitting the login form.... is
> > there a way I can force apache to create a session if none specified
> > in the landing page? Approx the logic is:
>
> > a) serve the landing page
> > b) GET the landing page; create session; serve the second page
> > c) continue with survey on =A0the same session
>
> > These pages are created for Spring framework (a Java nightmare :).
>
> > Used the QSA with P & L. Doesn't seem to make a diff.
>
> > Thanks- Hide quoted text -
>
> > - Show quoted text -
>
> Upgraded apache to 2.2.4 The problem still persists. Any help?
> Thanks- Hide quoted text -
>
> - Show quoted text -

Finally it worked with the ProxyPassReverse added with good
measure. :>


<VirtualHost *.81>
ProxyPass / http://192.168.5.10/
ProxyPassReverse / http://192.168.5.10/
TransferLog "logs/proxy.log"
</VirtualHost>
souporpower [ Mo, 07 April 2008 16:53 ] [ ID #1937193 ]

Re: Proxy setting strips CSS and Javascript

On Apr 7, 10:53=A0am, "souporpo... [at] gmail.com" <souporpo... [at] gmail.com>
wrote:
> On Apr 4, 11:54=A0am, "souporpo... [at] gmail.com" <souporpo... [at] gmail.com>
> wrote:
>
>
>
>
>
> > On Apr 3, 3:50=A0pm, "souporpo... [at] gmail.com" <souporpo... [at] gmail.com>
> > wrote:
>
> > > On Apr 3, 11:33=A0am, "souporpo... [at] gmail.com" <souporpo... [at] gmail.com>
> > > wrote:
>
> > > > On Apr 3, 9:44=A0am, "HansH" <ha... [at] invalid.invalid> wrote:
>
> > > > > <souporpo... [at] gmail.com> schreef in berichtnews:14725e19-7051-4743-=
8c73-0239fe05b1c7 [at] c65g2000hsa.googlegroups.com...
> > > > > On Apr 2, 10:43 pm, sean dreilinger <sean-use... [at] durak.org> wrote:=

>
> > > > > > The website in question has a login form. The user enters the em=
ail id
> > > > > > and if valid the next form is shown. For some reason, upon =A0su=
bmission
> > > > > > of the form the IP address is shown. Whereas if I try the second=
page
> > > > > > with proxy in the URL, it works.
>
> > > > > > Let me try to illustrate this as follows:
>
> > > > > >http://proxy/survey08app/loginForm.htm---> shows up correctly
>
> > > > > > Fill the form and expecthttp://proxy/survey08app/page2.htm
> > > > > > but instead I gethttp://192.168.5.10/survey08app/page2.htm
>
> > > > > > However, if I tryhttp://proxy/survey08/page2.htmitshowsup
> > > > > > correctly and I am able to complete the survey with proxy settin=
gs.
>
> > > > > > There is nothing special about page2 to prevent the proxy settin=
gs.
>
> > > > > Check for missing or ampty action atribute at th <form ... > tag.
> > > > > Check for JavaScript interfering the submit.
>
> > > > > Just 2ct ...
>
> > > > > HansH- Hide quoted text -
>
> > > > > - Show quoted text -
>
> > > > All the objects/assets are referred relative to survey08app. I am ab=
le
> > > > to view all the pages individually by using proxy.
>
> > > >http://proxy/survey08app/page0thruhttp://proxy/survey08app/ pageend
> > > > are all accessible without a hitch.
>
> > > > Whereas, when I try clicking the submit button on page0 the proxy is=

> > > > gone!
>
> > > > Thanks- Hide quoted text -
>
> > > > - Show quoted text -
>
> > > I have one more piece of info to add. The app requires a session. It
> > > seems the session is created upon submitting the login form.... is
> > > there a way I can force apache to create a session if none specified
> > > in the landing page? Approx the logic is:
>
> > > a) serve the landing page
> > > b) GET the landing page; create session; serve the second page
> > > c) continue with survey on =A0the same session
>
> > > These pages are created for Spring framework (a Java nightmare :).
>
> > > Used the QSA with P & L. Doesn't seem to make a diff.
>
> > > Thanks- Hide quoted text -
>
> > > - Show quoted text -
>
> > Upgraded apache to 2.2.4 The problem still persists. Any help?
> > Thanks- Hide quoted text -
>
> > - Show quoted text -
>
> Finally it worked with the ProxyPassReverse added with good
> measure. :>
>
> <VirtualHost *.81>
> ProxyPass /http://192.168.5.10/
> ProxyPassReverse /http://192.168.5.10/
> TransferLog "logs/proxy.log"
> </VirtualHost>- Hide quoted text -
>
> - Show quoted text -

The problem is I have to open port 81 on firewall. Is there any other
way?
souporpower [ Do, 10 April 2008 22:36 ] [ ID #1939573 ]
Webserver » alt.apache.configuration » Proxy setting strips CSS and Javascript

Vorheriges Thema: Apache and Digest AuthType
Nächstes Thema: apache pid user, can i use the domain's user?