I am trying to install Concerto (a digital signage project). I started
on
an Ubuntu 12.04 server and ran into problems starting Apache. I was
able
to get Xibo (another digital signage product) installed on that same
server
with no problems, but it does not use Ruby.
I switched to a Windows 2008R2 server because I am pretty worthless with
Linux - trying to learn, but I know Windows much better.
In both environments, if the RailsEnv production directive is in the
config
file for the site Apache throws an error:
The Apache service named reported the following error:
Invalid command ‘RailsEnv’, perhaps misspelled or defined by a module
not included in the server configuration
I know the bin folder for Ruby IS included in the Windows path. I tried
installing the DevKit. It installed with no errors and I am able to run
json.
However, as long as the RailsEnv directive is in the config file, Apache
will not start.
Could anyone give me guidance on what I am doing wrong? It doesn’t
really
matter to me whether the product is running on Linux or Windows, so I
would
welcome an answer from anyone with expertise on either platform.
This is what is in the httpd-vhosts conf file. If I comment out the
RailsEnv directive, Apache starts just fine.
<VirtualHost *:80>
ServerName signs.yyy.yyy
DocumentRoot “c:/concerto”
RailsEnv production
<Directory “c:/concerto”>
Order allow,deny
Allow from all
Thank you in advance!