A set of bash scripts for standing up a Lucee server using nginx and Tomcat on Ubuntu. Uses the
Tomcat from the Ubuntu distribution so you can update Tomcat using apt-get update tomcat8
Important: The master branch is now using Lucee 5, for Lucee 4.5 see the lucee45-ubuntu14 branch.
- You want to run nginx as your web server
- You want to update Tomcat via
apt-get
- Updates Ubuntu - simply runs
apt-get updateandapt-get upgrade - Downloads Lucee - uses curl to download lucee jars from BitBucket places jars in
/opt/lucee/current/ - Installs & Configures Tomcat 8 - runs
apt-get install tomcat8updates theweb.xmlserver.xmlandcatalina.propertiesto configure Lucee servlets and mod_cfml Valve. - Installs Oracle JVM - if you downloaded a server-jre and specified its path in the config it will extract it under
/opt/lucee/jvm/versionand then create a symbolic link/opt/lucee/jvm/currentto denote the current jvm version to use. It also edits tomcat config to point to this jvm. - Installs & Configures nginx - runs
apt-get install nginxto install nginx. Crates a web root directory. Creates alucee.configfile so you can justinclude lucee.configfor any site that uses CFML
Take a look in the scripts/ subfolder to see the script for each step.
- Downlaod this repository -
curl -Lo /root/ubuntu-nginx-lucee.tar.gz https://api.github.com/repos/lunabyte/ubuntu-nginx-lucee/tarball/master - Extract repository -
tar -xzvf /root/ubuntu-nginx-lucee.tar.gz - Optional: Download Oracle JVM - Traditionally the Oracle JVM is used to run CFML applications. You can instead use the open source OpenJDK (which the Oracle JVM is based on). The advantage of using OpenJDK is that you can also keep it up to date using
apt-get. The advantage of the Oracle JVM is that it includes a few Java classes that might be used for image processing (eg the com.sun classes). If you download a JVM from Oracle make sure the jvm you downloaded is located in the folder that contains install.sh, eg/root/foundeo-ubuntu-nginx-lucee-abcdefg/. If you skip this step OpenJDK is used instead. - Edit the
install.sh- Change any configuration options such as the Lucee Version or JVM version. - Run install.sh - make sure you are root or sudo and run
./install.shyou may need tochmod u+x install.shto give execute permissions to the script. - Set Lucee Passwords - login to
/lucee/admin/server.cfmand set the server password, and also set the default web context password.
- The servlet definitions and mappings (located in
/etc/tomcat8/web.xml) are slimmed down, so if you need things like REST web services, flash/flex remoting support see the Railo docs for web.xml config - The
/lucee/uri is blocked in/etc/nginx/lucee.confyou must add in your ip address and restart nginx. - There is no uninstall option
- This version of the script has been tested on Ubuntu 16.04 LTS only
By default nginx on Ubuntu looks in the folder /etc/nginx/sites-enabled/ for configuration nginx files. To setup a site create a file in that folder (another technique you can use is to create the file in /etc/nginx/sites-avaliable/ and then create a symbolic link in sites-enabled to enable the site), for example /etc/nginx/sites-enabled/me.example.com.conf at a minimum it will look like this:
server {
listen 80;
server_name me.example.com;
root /web/me.example.com/wwwroot/;
include lucee.conf;
}
You may also want to break logging for this site out into its own file, like this:
server {
listen 80;
server_name me.example.com;
root /web/me.example.com/wwwroot/;
access_log /var/log/nginx/me.example.com.access.log;
error_log /var/log/nginx/me.example.com.error.log;
include lucee.conf;
}
If you don't need Lucee/CFML for a given site, simply omit the include lucee.conf; line, like this:
server {
listen 80;
server_name img.example.com;
root /web/img.example.com/wwwroot/;
}
After making changes you need to restart or reload nginx:
sudo service nginx restart
For more information on configuring nginx see the nginx Wiki
Thanks go to Booking Boss for funding the initial work on this script.