当前位置: 首页 > 编程笔记 >

coldfusion 安装或设置

谭建章
2023-03-14
本文向大家介绍coldfusion 安装或设置,包括了coldfusion 安装或设置的使用技巧和注意事项,需要的朋友参考一下

示例

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;
    indexindex.cfmindex.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

您的根Web目录位于此处:

/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;
    indexindex.cfmindex.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 Server管理员:

127.0.0.1:8500/CFIDE/administrator/index.cfm

您的根Web目录位于此处:

/opt/coldfusion2016/cfusion/wwwroot
           

 类似资料:
  • 本文向大家介绍AutoHotkey 安装或设置,包括了AutoHotkey 安装或设置的使用技巧和注意事项,需要的朋友参考一下 示例 从Autohotkey网站文档 转到自动热键主页。 单击下载,下载后运行可执行文件。 在安装AutoHotkey的过程中,系统会要求您选择UNICODE或ANSI。简而言之,您可能希望选择UNICODE。它支持非英语字母和数字(字符)。 继续操作,直到看到“安装”按

  • 本文向大家介绍gulp 安装或设置,包括了gulp 安装或设置的使用技巧和注意事项,需要的朋友参考一下 示例 1.安装Node.js和NPM: Gulp需要Node.js和Node的软件包管理器NPM。大多数安装程序都将NPM与Node.js一起提供。请在终端中运行以下命令,以参阅安装文档或确认它已被安装, 2.全局安装gulp: 如果您以前在全球范围内安装了gulp版本,请运行npm rm --

  • 本文向大家介绍sitecore 安装或设置,包括了sitecore 安装或设置的使用技巧和注意事项,需要的朋友参考一下 示例 可执行文件 从http://dev.sitecore.net/下载.exe,然后双击以启动。该.exe将为您做所有事情-附加数据库,修改主机文件并设置文件夹权限。唯一的缺点是,它会在[HKEY_LOCAL_MACHINE \ SOFTWARE \ Sitecore CMS]

  • 本文向大家介绍symfony2 安装或设置,包括了symfony2 安装或设置的使用技巧和注意事项,需要的朋友参考一下 示例 Symfony框架-由symfony组件构建,是用于创建健壮的网站和Web应用程序的领先PHP框架之一。 可以通过两种推荐的方式快速安装Symfony。 官方文档建议通过Symfony Installer安装框架, Symfony Installer是一个很小的php应用程

  • 本文向大家介绍pdf 安装或设置,包括了pdf 安装或设置的使用技巧和注意事项,需要的朋友参考一下 示例 要查看pdf,您可以免费下载Adobe Reader。您可以e.g通过使用iTextSharp,jsPDF或PDFSharp(有其他可用的库)来以编程方式创建pdf。

  • 本文向大家介绍llvm 安装或设置,包括了llvm 安装或设置的使用技巧和注意事项,需要的朋友参考一下 示例 始终建议您访问LLVM官方网站,并根据您的操作系统遵循安装指南。 如果您正在使用posix,那么简而言之,您必须添加官方LLVM软件包存储库之一。例如,如果您使用Ubuntu Xenial(16.04),则在文件中添加deb和deb-src条目/etc/apt/sources.list: