Am 06.08.2012 12:04, schrieb 고우찬_Gilbert:
> Hi~
>
> I should use Port 8080 instead of 80.
> So,I changed Port 80 -> 8080.
>
> But I have problem.
>
> records.config
> CONFIG proxy.config.http.server_port INT 8080
> CONFIG proxy.config.http.server_port_attr STRING X
>
>
> remap,config
> map http://TS_URL:8080 http://ORIGIN_URL
you are missing the reverse map
sample below is a internal testmachine
where DNS points to it and the origin
httpd is the same machine on port 80
[root@buildserver:~]$ cat /etc/trafficserver/remap.config
map http://rhsoft.buildserver.thelounge.net:8080 http://rhsoft.buildserver.thelounge.net
reverse_map http://rhsoft.buildserver.thelounge.net http://rhsoft.buildserver.thelounge.net:8080
|