I want my http server to listen on port 8181, and I want to configure
userdir.
/etc/conf.d/apache2
APACHE2_OPTS="-D USERDIR"
added Listen 8181 to /etc/apache2/http.conf
/etc/apache2/modules.d/00_mod_userdir.conf
# Control access to UserDir directories. The following is an example
# for a site where these directories are restricted to read-only.
<Directory /home/*/public_html>
AllowOverride FileInfo AuthConfig Limit Indexes
Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
<Limit GET POST OPTIONS>
Order allow,deny
Allow from all
</Limit>
<LimitExcept GET POST OPTIONS>
Order deny,allow
Deny from all
</LimitExcept>
</Directory>
so if it is read only why can't I read?
You don't have permission to access /~david16/ on this server
Dave