Search found 3 matches

by nickbrookes
Thu May 17, 2018 9:10 am
Forum: Community chat
Topic: Change root url
Replies: 2
Views: 13204

Change root url

I'm running WonderCMS on docker behind an HAProxy. Running on docker the root url is 192.168.1.150:8089. This means that all of the urls start 192.168.1.150:8089/pagename. Is there somewhere i can amend / set this default url to reflect the url i want to display to the internet. This will be somethi...
by nickbrookes
Wed May 16, 2018 7:33 pm
Forum: 2.x.x support
Topic: [SOLVED] Docker Image
Replies: 4
Views: 12362

Re: Docker Image

edited /etc/apache2.conf

<Directory /var/www/>
Options Indexes FollowSymLinks
AllowOverride All - changed this value from none.
Require all granted
</Directory>


It now works.

It wasn't a docker issue, just an apache configuration issue!
by nickbrookes
Wed May 16, 2018 9:08 am
Forum: 2.x.x support
Topic: [SOLVED] Docker Image
Replies: 4
Views: 12362

[SOLVED] Docker Image

I'm new to wondercms and also new to docker, but am trying to write a docker file image to quickly get a wondercms instance up and running with minimal effort. So far i can see the homepage fine, but login does not work :-( In doing so i've created the dockerfile below and it's running through fine,...