User Tools

Site Tools


squid:acls:acl_example_usage

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
squid:acls:acl_example_usage [2020/04/07 12:00] petersquid:acls:acl_example_usage [2020/07/15 09:30] (current) – external edit 127.0.0.1
Line 312: Line 312:
 </code> </code>
  
 +The actual rewriter script that is called would be something like this:
  
-<WRAP info+<code perl
-**NOTE:* Do not place quotes around the path...this could break it. +#!/usr/bin/env perl 
-</WRAP>+$|=1; 
 +while (<>) { 
 +  $url = m/^([^ ]*)/; 
 +  if ($url !~ /^http:\/\/www\.hostname\.com/) { 
 +    $url =~ s@^http://www\.hostname\.com/(.*)@http://www.hostname.com/\1@; 
 +    print "301:$url\n"; 
 +  } else { 
 +    print "$url\n"; 
 +  } 
 +
 +</code> 
 + 
 +If it exists with abnormal program termination and this is in the cache.log: 
 + 
 +<code bash> 
 +2012/03/23 19:26:12| helperOpenServers: Starting 5 'c:\squid\php\redirect.pl' processes 
 +2012/03/23 19:26:12| ipcCreate: CHILD: c:\squid\php\redirect.pl: (8) Exec format error 
 +2012/03/23 19:26:12| ipcCreate: PARENT: OK read test failed 
 +2012/03/23 19:26:13| --> read returned 4 
 +</code> 
 + 
 +Then could be to not place quotes around the path...
  
 ---- ----
squid/acls/acl_example_usage.1586260825.txt.gz · Last modified: 2020/07/15 09:30 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki