You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by Sam Carleton <sc...@gmail.com> on 2007/03/26 05:08:50 UTC

[users@httpd] help needed with reverse proxies setup

I am working on setting up apache as a reverse proxy for a kiosk
system I am developing.  I know I have the basics working, it is on
port 80 and the web site is on 8042, when I serf to port 80, I get the
web site.  The problem is that it does not look like anything is
getting saved to the hard drive, which is my ultimate objective.  Here
is the complete httpd.conf, what do I have missing?

Oh, is there anything in the config I can live without?

ThreadsPerChild 250
MaxRequestsPerChild  0
ServerRoot "C:/Apache2.2"

Listen 80

LoadModule authz_host_module modules/mod_authz_host.so
LoadModule dir_module modules/mod_dir.so
LoadModule file_cache_module modules/mod_file_cache.so
LoadModule log_config_module modules/mod_log_config.so

LoadModule cache_module modules/mod_cache.so
LoadModule disk_cache_module modules/mod_disk_cache.so
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_connect_module modules/mod_proxy_connect.so
LoadModule proxy_http_module modules/mod_proxy_http.so

ProxyRequests Off

ProxyPass        /   http://127.0.0.1:8042/
ProxyPassReverse /   http://127.0.0.1:8042/

CacheRoot "C:/Apache2.2/proxy"
CacheMaxExpire 24
CacheLastModifiedFactor 1
CacheDefaultExpire 1
CacheMinFileSize 1
CacheMaxFileSize 10240000
CacheDirLength 4
CacheDirLevels 5

<Directory "C:/Apache2.2/proxy">
    AllowOverride None
    Order allow,deny
    Allow from all
</Directory>

ServerAdmin admin@miltonstreet.com
ServerName basement.miltonstreet.com
DocumentRoot "C:/Apache2.2/htdocs"

<Directory />
    Options FollowSymLinks
    AllowOverride None
    Order deny,allow
    Deny from all
    Satisfy all
</Directory>

ErrorLog logs/error.log

#LogLevel warn
LogLevel debug

DefaultType text/plain

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org