I just have to dobbelt tjeck...
Yes there is no index.html page in that folder...
The installation off the conflux is in:
myplace.com/conflux or home/e-smith/files/ibays/Primary/html/conflux but i can stil get it to show the index.py.
Do not install it in to your primary ibay, but install it in the /opt/ directory.
- Begin by restoring the default httpd.conf files:
expand-template /etc/httpd/conf/httpd.conf
- Restart apache to reload the corrected settings (so without the conflux settings)
/etc/rc7.d/S86httpd-e-smith sigusr1
- Create a directory like /opt/conflux and put/copy the source files there.
mkdir -p /opt/conflux
- Create a custom-template in /etc/e-smith/templates-custom/etc/httpd/conf/httpd.conf/ (this way changes will be kept over upgrades, installation of new software and reboots, this should also be made clear to whomever wrote the installguide as modifying the normal configuration files will result in not working or cripled applications as these are template based and are rewritten (expanded) when changes are neccessary, for details see the developer section II.7 Configuration File Templates) and name it 90e-smithAccess50conflux (by choosing the prefix 90s-smithAcces50 it will be loaded in to the httpd.conf file after the configuration of the ibays).
pico /etc/e-smith/templates-custom/etc/httpd/conf/httpd.conf/90e-smithAccess50conflux
Paste the LoadModule and Directory configuration of step 13 (page

in there and modify the file path to point to the location you created and add one line above the directory keyword to specify the name of the weblocation, something like this
LoadModule python_module /usr/lib/httpd/modules/mod_python.so
Alias /conflux /opt/conflux
<Directory /opt/conflux>
DirectoryIndex index.py
...
</Directory>
You also might want to consider merging the first and the last DirectoryIndex statement (or delete one of them) as they contain duplicate information. Press Ctrl-X to exit and save your changes.
- Don't add the include statement specified in step 13 and expand trhe configuration files and restart the Apache server as we did earlier:
expand-template /etc/httpd/conf/httpd.conf[/li][/list]
/etc/rc7.d/S86httpd-e-smith sigusr1
Everything should be alright now and conflux should be available at:
http://server-name/conflux. Keep in mind though that I don't have conflux installed and did not test the steps described here, don't hesitate to post your experiences and errors as we might be able to help you further.
Good luck!