After reading docs and asking to google, my apache2 conf do not work.
If someone has the clue, it would be great.
my httpd.conf is empty, as usual on ubuntu on Linode.
The 000-default file has the conf data with :
Code: Select all
<VirtualHost *:80>
	ServerAdmin webmaster@localhost
	DocumentRoot /srv/www
	<Directory />
		Options FollowSymLinks
		AllowOverride None
	</Directory>
	<Directory "/srv/www/">
		Options Indexes FollowSymLinks MultiViews
		AllowOverride None
		Order allow,deny
		allow from all
              AddHandler livecode-script .lc
              Action livecode-script /livecode-cgi/livecode-server
	</Directory>
	
	ScriptAlias /livecode-cgi/livecode-server /srv/www/livecodeServer/livecode-server
	ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
	<Directory "/usr/lib/cgi-bin">
		AllowOverride None
		Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
		Order allow,deny
		Allow from all
	</Directory>
	
	     <Directory "/srv/www/livecodeServer/">
          Options ExecCGI
          Order allow,deny
          Allow from all
      </Directory>
	ErrorLog /var/log/apache2/error.log
	# Possible values include: debug, info, notice, warn, error, crit,
	# alert, emerg.
	LogLevel warn
	CustomLog /var/log/apache2/access.log combined
    Alias /doc/ "/usr/share/doc/"
    <Directory "/usr/share/doc/">
        Options Indexes MultiViews FollowSymLinks
        AllowOverride None
        Order deny,allow
        Deny from all
        Allow from 127.0.0.0/255.0.0.0 ::1/128
    </Directory>
</VirtualHost>
Instead of launching the script, it shows it as text in the browser.
Any idea ? thanks in advance.
Frédéric

