--
You received this message because you are subscribed to the Google Groups "ResourceSpace" group.
To post to this group, send email to resour...@googlegroups.com.
To unsubscribe from this group, send email to resourcespac...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/resourcespace?hl=en.
Make it look like this:
$baseurl=http://<yourservername>:8080/<location>
Substituting your server name and the location of the base directory.
This is probably an httpd config issue, or you have the files in the
wrong physical location.
Port open?
/etc/init.d/iptables stop
Then try to go to the port 8080 url again from another machine. If it
works, you need to add a rule to iptables to allow the traffic.
http://linux.die.net/man/8/iptables
Listen 8080
You must also set up a virtual host configuration for that port like this:
<VirtualHost *:8080>
ServerAdmin webm...@dummy-host.example.com
DocumentRoot /www/docs/dummy-host.example.com
ServerName dummy-host.example.com
ErrorLog logs/dummy-host.example.com-error_log
CustomLog logs/dummy-host.example.com-access_log common
</VirtualHost>
You can replace the *:8080 with <your_server_ip_address>:8080 if you
like. I'd start out with the * though unless you have this box
serving other websites that use that port. Where the ServerAdmin is
your admin's email address, the DocumentRoot is the ResourceSpace
directory, the ServerName is the ResourceSpace server name and your
log file locations exist.