Using library and citation services from home

To enable proxy access from a specific IP-number on an Apache web server, edit the section of httpd.conf that looks similar to the following. The sections marked in green are needed to enable proxy services the fist time. The line marked in red is where new adresses are added. Enabling the cache is not necessary for the present purpose.

#
# Proxy Server directives. Uncomment the following lines to
# enable the proxy server:
#
<IfModule mod_proxy.c>
ProxyRequests On
#
<Directory proxy:*>
    Order deny,allow
    Deny from all
    Allow from 213.237.24.175, 213.237.24.176
</Directory>
#
# Enable/disable the handling of HTTP/1.1 "Via:" headers.
# ("Full" adds the server version; "Block" removes all outgoing Via: headers)
# Set to one of: Off | On | Full | Block
#
#ProxyVia On

#
# To enable the cache as well, edit and uncomment the following lines:
# (no cacheing without CacheRoot)
#
#CacheRoot "/local/opt/apache/proxy"
#CacheSize 5
#CacheGcInterval 4
#CacheMaxExpire 24
#CacheLastModifiedFactor 0.1
#CacheDefaultExpire 1
#NoCache a_domain.com another_domain.edu joes.garage_sale.com

</IfModule>
# End of proxy directives.