Major update to Railo 4.2.1.000, for more information see
http://blog.getrailo.com/post.cfm/railo-4-2-final-release
This commit is contained in:
parent
9b9c76fc23
commit
579bf71d7f
@ -1,10 +1,9 @@
|
||||
# $OpenBSD: Makefile,v 1.15 2014/03/31 10:57:38 sthen Exp $
|
||||
# $OpenBSD: Makefile,v 1.16 2014/05/31 13:42:15 sthen Exp $
|
||||
|
||||
COMMENT= open-source CFML engine
|
||||
|
||||
V= 4.1.2.005
|
||||
V= 4.2.1.000
|
||||
EPOCH= 0
|
||||
REVISION= 1
|
||||
DISTNAME= railo-$V
|
||||
EXTRACT_SUFX= .war
|
||||
|
||||
@ -17,7 +16,7 @@ MAINTAINER = Stuart Henderson <sthen@openbsd.org>
|
||||
# LGPLv2.1
|
||||
PERMIT_PACKAGE_CDROM= Yes
|
||||
|
||||
MASTER_SITES = http://www.getrailo.org/down.cfm?item=/railo/remote/download/$V/custom/all/
|
||||
MASTER_SITES = http://www.getrailo.org/railo/remote/download42/$V/custom/all/
|
||||
|
||||
# doesn't actually need tomcat to build, but listing it here avoids
|
||||
# wasting time on !java arch
|
||||
@ -50,7 +49,6 @@ do-install:
|
||||
${INSTALL_DATA_DIR} ${PREFIX}/railo ${PREFIX}/lib ${PREFIX}/conf
|
||||
cd ${WRKSRC}/WEB-INF/lib && pax -rw * ${PREFIX}/lib/
|
||||
chown -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/lib/*
|
||||
${INSTALL_DATA} ${WRKSRC}/index.cfm ${PREFIX}/railo/index.cfm.dist
|
||||
${INSTALL_DATA} ${WRKSRC}/WEB-INF/web.xml ${PREFIX}/conf/web-railo.xml.dist
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,2 +1,2 @@
|
||||
SHA256 (railo-4.1.2.005.war) = hhOwsTI/w8ieDRlYL8/Q9vbkOF5afBA3w512jFI2hT8=
|
||||
SIZE (railo-4.1.2.005.war) = 60565438
|
||||
SHA256 (railo-4.2.1.000.war) = kskMgnaEPMCNMKLjv5ylPfxhFFWP/kM7+0KADLtP4kI=
|
||||
SIZE (railo-4.2.1.000.war) = 60785183
|
||||
|
@ -1,8 +1,15 @@
|
||||
Railo is a high-performance open-source CFML engine. It has good
|
||||
compatibility with other CFML engines. Most sites can be ported to
|
||||
Railo with very little effort and all of the major CFML frameworks
|
||||
support Railo out of the box.
|
||||
Railo is a high-performance open-source CFML engine with good compatibility
|
||||
with other CFML engines. Most sites can be ported to Railo with little
|
||||
effort, and all major CFML frameworks support Railo out of the box.
|
||||
|
||||
Railo will very probably run your sites faster than any other CFML
|
||||
engine, allowing you to handle more load and to provide a better
|
||||
experience for end users.
|
||||
CFML ("ColdFusion Markup Lanuage") is a server-side web scripting language
|
||||
that augments standard HTML files with database commands, conditional
|
||||
operators, high-level formatting functions, and other elements to produce
|
||||
web applications. ColdFusion Components (CFCs), CFML's version of objects,
|
||||
allow for separation of business logic from presentation.
|
||||
|
||||
The language uses either HTML-like tags (good for intermixing with HTML
|
||||
text) or with a JavaScript-like "cfscript" syntax. If the many built-in
|
||||
functions (including imaging, Lucene search, S3 storage and PostgreSQL/
|
||||
MySQL/MSSQL drivers) aren't enough, it is also fairly easy to call
|
||||
native Java classes from your appications.
|
||||
|
@ -1,10 +1,16 @@
|
||||
@comment $OpenBSD: PLIST,v 1.4 2013/11/28 22:41:09 sthen Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.5 2014/05/31 13:42:15 sthen Exp $
|
||||
@extraunexec rm -rf %D/railo/server-config/* %D/railo/web-config/*
|
||||
@extraunexec rm -rf %D/webapps/ROOT/WEB-INF/flex
|
||||
@extraunexec rm -rf %D/webapps/manager/WEB-INF/flex
|
||||
conf/
|
||||
conf/web-railo.xml.dist
|
||||
@owner root
|
||||
@group wheel
|
||||
@sample webapps/manager/
|
||||
@sample webapps/manager/WEB-INF/
|
||||
@owner _tomcat
|
||||
@group _tomcat
|
||||
@sample webapps/manager/WEB-INF/flex/
|
||||
@sample conf/web-railo.xml
|
||||
@owner
|
||||
@group
|
||||
@ -143,10 +149,8 @@ lib/xmlparserv2.jar
|
||||
railo/
|
||||
@sample railo/server-config/
|
||||
@sample railo/web-config/
|
||||
railo/index.cfm.dist
|
||||
@sample webapps/
|
||||
@sample webapps/ROOT/
|
||||
@sample webapps/ROOT/index.cfm
|
||||
@owner
|
||||
@group
|
||||
@cwd ${LOCALBASE}/share/doc/pkg-readmes
|
||||
|
@ -1,4 +1,4 @@
|
||||
$OpenBSD: README,v 1.5 2014/03/31 10:28:20 sthen Exp $
|
||||
$OpenBSD: README,v 1.6 2014/05/31 13:42:15 sthen Exp $
|
||||
|
||||
+-----------------------------------------------------------------------
|
||||
| Running ${FULLPKGNAME} on OpenBSD
|
||||
@ -63,6 +63,13 @@ but ongoing maintenance is reduced.
|
||||
Starting the service and online configuration
|
||||
=============================================
|
||||
|
||||
- Add the Java agent to Tomcat's command-line flags:
|
||||
|
||||
tomcat_flags="-server -javaagent:var/tomcat/lib/railo-inst.jar"
|
||||
|
||||
Any other JVM options can be added as necessary (for example, those
|
||||
options to adjust Java memory use, enable JMXRemote, etc).
|
||||
|
||||
- Start/restart tomcat:
|
||||
|
||||
${RCDIR}/tomcat restart
|
||||
@ -71,10 +78,11 @@ Starting the service and online configuration
|
||||
default Railo homepage including a couple of samples and links to the
|
||||
admin pages.
|
||||
|
||||
- Connect to the admin pages and set passwords:
|
||||
- Connect to the server and web administration pages. At first run of
|
||||
a successful new installation, you will be prompted to set passwords.
|
||||
|
||||
http://localhost:8080/railo-context/admin/server.cfm
|
||||
http://localhost:8080/railo-context/admin/web.cfm
|
||||
http://127.0.0.1:8080/railo-context/admin/server.cfm
|
||||
http://127.0.0.1:8080/railo-context/admin/web.cfm
|
||||
|
||||
- You can add pages to /var/tomcat/webapps/ROOT to be used for "localhost".
|
||||
Additional host configurations can be added to ${CATALINA_BASE}/conf/server.xml.
|
||||
|
Loading…
x
Reference in New Issue
Block a user