You don't have permission to access /serweb/index.html
on this server.
Additionally, a 403 Forbidden
error was encountered while trying to use an ErrorDocument to handle the request.
'user']="<DB User>";
$config->data_sql->host[$i]['pass']="<User password>";
..
#5 - In "/root/instalacao/serweb-0.9.4/config/config_paths.php"
$config->root_path="/root/instalacao/serweb-
0.9.4/html/";
#6 - I created a log filetouch /var/log/serweb
chown apache /var/log/serweb
#7 - I created a folder for SIP domainmkdir /root/installation/serweb-0.4/html/domains/xxx.xxx.xxx.xxx(IP of SER)
#8 - I copied the files and folder from the default folder
("/root/installation/serweb-0.4/html/domains/_default/") to the one i created.
#9 - I specified the SIP domain in the file "/root/installation/serweb-0.4/config/set_domain.php":
…
$config->domain = "xxx.xxx.xxx.xxx(IP of SER)";
…
#10 - I enabled logging in file "/root/installation/serweb-0.4/config/config.php":
…
$config->enable_loging = true;
$config->log_file = "/var/log/serweb;
#11 - In /etc/httpd/conf/httpd.conf I added an alias
…
<Directory "/var/www/html">
Options Indexes FollowSymLinks
AllowOverride None
Order deny,allow
Allow from all
</Directory>
<IfModule mod_userdir.c>
UserDir disable root
#UserDir public_html
</IfModule>
Alias /serweb/ "/root/instalacao/serweb-0.9.4/html"
<Directory "/root/instalacao/serweb-0.9.4/html">
Options Indexes MultiViews
Options +FollowSymlinks
AllowOverride None
Order Deny,Allow
Allow from all
</Directory>
...
#12 - I then put some commands for Apache to begin when computer would start
chkconfig httpd on
service httpd start
#13 - I introduced the following URL
http://<IP of SER>/<alias i wrote in httpd.conf>/
http://xxx.xxx.xxx.xxx/serweb/And then that HTTP 403 error shows up
I
really hope somebody can help me because I'm doing a VoIP project for
my school and I'd really like to have everything done in time.
Thank you for your attention,
Roberto Lopes