View | Details | Raw Unified | Return to bug 144698
Collapse All | Expand All

(-)cherokee-new/Makefile (-1 / +9 lines)
Lines 55-61 Link Here
55
		cherokee-tweak.1 cherokee-worker.1
55
		cherokee-tweak.1 cherokee-worker.1
56
PORTDOCS=	*
56
PORTDOCS=	*
57
57
58
OPTIONS=	IPV6	"IPv6 support"	on	\
58
OPTIONS=	WWWUSER	"Run as www:www user"	on \
59
                IPV6	"IPv6 support"	on	\
59
		MYSQL	"MySQL Database"	off	\
60
		MYSQL	"MySQL Database"	off	\
60
		LDAP	"LDAP Support"	off	\
61
		LDAP	"LDAP Support"	off	\
61
		GEOIP	"GeoIP Support (recommended)"	on	\
62
		GEOIP	"GeoIP Support (recommended)"	on	\
Lines 76-81 Link Here
76
77
77
.include <bsd.port.pre.mk>
78
.include <bsd.port.pre.mk>
78
79
80
.ifdef WITH_WWWUSER
81
CONFIGURE_ARGS+=--with-wwwuser=www --with-wwwgroup=www
82
.endif
83
79
.ifdef WITHOUT_IPV6
84
.ifdef WITHOUT_IPV6
80
CONFIGURE_ARGS+=--disable-ipv6
85
CONFIGURE_ARGS+=--disable-ipv6
81
.endif
86
.endif
Lines 190-194 Link Here
190
	@cd ${DATADIR}/admin && ${FIND} . -name "*.py" |\
195
	@cd ${DATADIR}/admin && ${FIND} . -name "*.py" |\
191
	${XARGS} ${PYTHON_CMD} ${PYTHON_LIBDIR}/py_compile.py
196
	${XARGS} ${PYTHON_CMD} ${PYTHON_LIBDIR}/py_compile.py
192
.endif
197
.endif
198
	@${ECHO_MSG} "==============================================================="
199
	@${CAT} ${PKGMESSAGE}
200
	@${ECHO_MSG} "==============================================================="
193
201
194
.include <bsd.port.post.mk>
202
.include <bsd.port.post.mk>
(-)cherokee-new/pkg-message (+22 lines)
Line 0 Link Here
1
Please note that if you intend to run Cherokee as www user,
2
you'll have to manually create the log files and set the
3
proper ownership and permissions on them.
4
5
You can do it with (as root):
6
7
  touch /var/log/cherokee.error /var/log/cherokee.access
8
  chown -v www:www /var/log/cherokee.*
9
  chmod -v 0640 /var/log/cherokee.*
10
11
If you run Cherokee as root (NOT recommended) this is not
12
necessary.
13
14
To run Cherokee at startup or using the rc script, add
15
'cherokee_enable="YES"' to /etc/rc.conf
16
17
To start the Cherokee administrative interface, run (as root)
18
19
  cherokee-admin
20
21
For more information on cherokee-admin(1), please refer to
22
the official documentation and manpage.

Return to bug 144698