jonpaul1
Forum Replies Created
-
Forum: Localhost Installs
In reply to: Docker Curl(7): error; cannot access pages from dashboardHey @autotutorial,
Thanks for all your help!
For the meantime I’ve gone back to MAMP. I’ll revisit this in the future when I have some time to play around with it.Forum: Localhost Installs
In reply to: Docker Curl(7): error; cannot access pages from dashboardI see.
After changing from ‘none’ to ‘all’, same error, same issue.- This reply was modified 6 years, 6 months ago by jonpaul1.
Forum: Localhost Installs
In reply to: Docker Curl(7): error; cannot access pages from dashboard@autotutorial,
By denied rules, do you mean 400 errors? None in the console, none being logged by wordpress, none in the docker logs.I can’t find the httpd.conf file, or a directory. Docker might be organized differently.
Instead, I looked at the apache2.conf file and found:
<Directory />
Options FollowSymLinks
AllowOverride None
Require all denied
</Directory><Directory /usr/share>
AllowOverride None
Require all granted
</Directory><Directory /var/www/>
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
</Directory>I tried changing the AllowOverride to All.
Didn’t work.I feel out of my depth here, but I’m wondering if the issue is how the containers work.
Since its a container running on my Mac, I’m wondering if the problem is requests trying to reach the exposed virtual port 80 on the container through 8000 on my mac.