logo
Apache Lounge
Webmasters

 

About Forum Index Downloads Search Register Log in RSS X


Keep Server Online

If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.

or

Bitcoin

A donation makes a contribution towards the costs, the time and effort that's going in this site and building.

Thank You! Steffen

Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
Post new topic   Forum Index -> Apache View previous topic :: View next topic
Reply to topic   Topic: Have to type the full address with port number
Author
pequod



Joined: 30 Jan 2014
Posts: 2
Location: USA, Pasadena

PostPosted: Thu 30 Jan '14 20:25    Post subject: Have to type the full address with port number Reply with quote

admin note: changed your subject to more meaningful, see forum rules.


I have a Plone site served by Apache 2.4.6. with a No-IP host. I have two issues that are driving me crazy.

1. Despite my best efforts, I have to type the full address like so: example.com:86/example to reach the site. Here is a portion of my HTTPD.conf file:

<VirtualHost :*86>
ServerName www.xxx.hopto.org
ServerAlias *.xxx.hopto.org
ServerAdmin webmaster@xxx.hopto.org
ProxyPass / http://localhost:8080/xxx/VirtualHostBase/http/xxx.hopto.org:86/xxx/VirtualHostRoot/$1
ProxyPassReverse / http://localhost:8080/xxx/VirtualHostBase/http/xxx.hopto.org:86/xxx/VirtualHostRoot/

Is there an obvious flaw in this file? I have read for hours regarding this issue and can't solve it. Is this an Apache configuration problem or something to do with the Plone side? Any help/suggestions appreciated.

NGH
Back to top
James Blond
Moderator


Joined: 19 Jan 2006
Posts: 7298
Location: Germany, Next to Hamburg

PostPosted: Thu 30 Jan '14 22:22    Post subject: Reply with quote

What is the url on port 8080 you open in your browser?

The only thing that makes me think is the $ at the end of ProxyPass.
Back to top
pequod



Joined: 30 Jan 2014
Posts: 2
Location: USA, Pasadena

PostPosted: Thu 30 Jan '14 23:45    Post subject: Reply with quote

The address I use is localhost:8080/example which I think is in the proxypass info. I have no idea why the "$1" is there technically. I just followed the documentation on Plone's site.
Back to top
James Blond
Moderator


Joined: 19 Jan 2006
Posts: 7298
Location: Germany, Next to Hamburg

PostPosted: Fri 31 Jan '14 11:05    Post subject: Reply with quote

I think you should try

Code:

ProxyPass / http://localhost:8080/
ProxyPassReverse / http://localhost:8080/
Back to top
jraute



Joined: 13 Sep 2013
Posts: 188
Location: Rheinland, Germany

PostPosted: Fri 31 Jan '14 11:53    Post subject: Reply with quote

A question:

You wrote: <VirtualHost :*86>
Is that a typo error?

Shouldn't it be: <VirtualHost *:86> ?
Back to top


Reply to topic   Topic: Have to type the full address with port number View previous topic :: View next topic
Post new topic   Forum Index -> Apache