安裝或設定

Linux(Ubuntu) 安裝

Lucee(開源)

ColdFusion / CFML 直譯器

從他們的站點( http://lucee.org/downloads.html) 下載相應的檔案並執行他們的安裝程式

wget http://cdn.lucee.org/downloader.cfm/id/155/file/lucee-5.0.0.252-pl0-linux-x64-installer.run
sudo chmod +x lucee-5.0.0.252-pl0-linux-x64-installer.run
sudo ./lucee-5.0.0.252-pl0-linux-x64-installer.run

逐步完成安裝程式

Nginx

在你的伺服器上安裝 Nginx

sudo apt-get install nginx

編輯你的/ etc / nginx / sites-available / default

server {
    listen 80;
    server_name _;

    root /opt/lucee/tomcat/webapps/ROOT;
    index index.cfm index.html index.htm;

    #Lucee Admin should always proxy to Lucee
    location /lucee {
        include lucee.conf;
    }

    #Pretty URLs
    location / {
        try_files $uri /index.cfm$uri?$is_args$args;
        include lucee.conf;
    }

    location ~ \.cfm {
        include lucee.conf;
    }

    location ~ \.cfc {
        include lucee.conf;
    }
}

編輯/etc/nginx/lucee.conf

proxy_pass http://127.0.0.1:8888;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;

重新載入 nginx

sudo service nginx reload

訪問 Lucee Server 管理員:

127.0.0.1/lucee/admin/server.cfm

要麼

127.0.0.1:8888/lucee/admin/server.cfm

你的根網站目錄位於此處:

/opt/lucee/tomcat/webapps/ROOT

Adobe(封閉原始碼)

ColdFusion / CFML 直譯器

從他們的網站( https://www.adobe.com/products/coldfusion/download-trial/try.html) 下載相應的檔案並執行他們的安裝程式

wget <URL>/ColdFusion_2016_WWEJ_linux64.bin
sudo chmod +x ColdFusion_2016_WWEJ_linux64.bin
sudo ./ColdFusion_2016_WWEJ_linux64.bin

逐步完成安裝程式確保選擇內部 Web 伺服器(埠 8500)

Nginx

在你的伺服器上安裝 Nginx

sudo apt-get install nginx

編輯你的/ etc / nginx / sites-available / default

server {
    listen 80;
    server_name _;

    root /opt/coldfusion2016/cfusion/wwwroot;
    index index.cfm index.html index.htm;

    location / {
        try_files $uri $uri/ =404;
    }

    location ^~ /CFIDE/administrator {
        deny all;
    }

    location ~* \.(cfm|cfml|cfc|html)$ {
        include /etc/nginx/conf/dc_tomcat_connector.conf;
    }

    location ^~ /rest {
        include tomcatconf;
    }
}

編輯/etc/nginx/tomcat.conf

proxy_pass http://127.0.0.1:8500;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Server $host;
proxy_set_header X-Forwarded-For $http_x_forwarded_for;
proxy_set_header X-Real-IP $remote_addr;

重新載入 nginx

sudo service nginx reload

在此處訪問 Adobe ColdFusion 伺服器管理員:

127.0.0.1:8500/CFIDE/administrator/index.cfm

你的根網站目錄位於此處:

/opt/coldfusion2016/cfusion/wwwroot