All of lore.kernel.org
 help / color / mirror / Atom feed
* Apache recipe?
@ 2012-06-20 15:02 Marcin Juszkiewicz
  2012-06-20 15:14 ` Jack Mitchell
  0 siblings, 1 reply; 5+ messages in thread
From: Marcin Juszkiewicz @ 2012-06-20 15:02 UTC (permalink / raw)
  To: Openembedded-core

Does someone has recipe for Apache? I want to make LAMP image for our
tests and so far my choices are lighttpd or creation of new recipes for
Apache (based on 2.2.17 from OE classic).



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Apache recipe?
  2012-06-20 15:02 Apache recipe? Marcin Juszkiewicz
@ 2012-06-20 15:14 ` Jack Mitchell
  2012-06-20 15:16   ` Marcin Juszkiewicz
  2012-06-20 16:47   ` Koen Kooi
  0 siblings, 2 replies; 5+ messages in thread
From: Jack Mitchell @ 2012-06-20 15:14 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On 20/06/12 16:02, Marcin Juszkiewicz wrote:
> Does someone has recipe for Apache? I want to make LAMP image for our
> tests and so far my choices are lighttpd or creation of new recipes for
> Apache (based on 2.2.17 from OE classic).
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core

Last time I checked the PHP recipe needs a bit of love too, I've done a 
slightly updated customised build but it's a fantastic hackfest.

Any reason you specifically want Apache? I'm using Hiawatha webserver 
which is another lightweight alternative with PHP-cgi support as I 
wasn't too keen on lighttpd.

I would be happy to provide the recipes if you wish you to use them.

Regards,

-- 

   Jack Mitchell (jack@embed.me.uk)
   Embedded Systems Engineer
   http://www.embed.me.uk

--




^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Apache recipe?
  2012-06-20 15:14 ` Jack Mitchell
@ 2012-06-20 15:16   ` Marcin Juszkiewicz
  2012-06-20 15:23     ` Jack Mitchell
  2012-06-20 16:47   ` Koen Kooi
  1 sibling, 1 reply; 5+ messages in thread
From: Marcin Juszkiewicz @ 2012-06-20 15:16 UTC (permalink / raw)
  To: openembedded-core

W dniu 20.06.2012 17:14, Jack Mitchell pisze:
> On 20/06/12 16:02, Marcin Juszkiewicz wrote:
>> Does someone has recipe for Apache? I want to make LAMP image for our
>> tests and so far my choices are lighttpd or creation of new recipes for
>> Apache (based on 2.2.17 from OE classic).

> Last time I checked the PHP recipe needs a bit of love too, I've done a
> slightly updated customised build but it's a fantastic hackfest.
> 
> Any reason you specifically want Apache? I'm using Hiawatha webserver
> which is another lightweight alternative with PHP-cgi support as I
> wasn't too keen on lighttpd.
>
> I would be happy to provide the recipes if you wish you to use them.

I may end with lighttpd but would be great if you can share recipes.



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Apache recipe?
  2012-06-20 15:16   ` Marcin Juszkiewicz
@ 2012-06-20 15:23     ` Jack Mitchell
  0 siblings, 0 replies; 5+ messages in thread
From: Jack Mitchell @ 2012-06-20 15:23 UTC (permalink / raw)
  To: openembedded-core

[-- Attachment #1: Type: text/plain, Size: 534 bytes --]

On 20/06/12 16:16, Marcin Juszkiewicz wrote:
> >>Apache (based on 2.2.17 from OE classic).

I've just doubled checked the PHP one and it really is a mess, it would 
do more harm than good I believe but please find attached the recipe for 
the Hiawatha Webserver.

Please note that it has a slightly customised configuration file (php 
enabled) with it, and it is also a few minor versions out of date.

Regards,

-- 

   Jack Mitchell (jack@embed.me.uk)
   Embedded Systems Engineer
   http://www.embed.me.uk

--


[-- Attachment #2: hiawatha_8.2.bb --]
[-- Type: text/plain, Size: 1595 bytes --]

DESCRIPTION = "Lightweight secure web server"
HOMEPAGE = "http://www.hiawatha-webserver.org"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://LICENSE;md5=751419260aa954499f7abaabaa882bbe"
DEPENDS = "openssl libxml2 libxslt"

SECTION = "custom"

PR = "r0"

SRC_URI = "http://hiawatha-webserver.org/files/hiawatha-8.2.tar.gz \
					 file://hiawatha-init \
           file://hiawatha.conf"

SRC_URI[md5sum] = "64b44499f40ddac9ebba88128e6d4aa9"

inherit cmake update-rc.d

INITSCRIPT_NAME = "hiawatha"
INITSCRIPT_PARAMS = "defaults 70"

EXTRA_OECMAKE = " -DENABLE_IPV6=OFF \
                  -DENABLE_CACHE=ON \
                  -DENABLE_DEBUG=ON \
                  -DENABLE_SSL=OFF \
                  -DENABLE_TOOLKIT=OFF \
                  -DENABLE_XSLT=OFF \
                  -DCMAKE_INSTALL_MANDIR=${mandir} \
                  -DCMAKE_INSTALL_BINDIR=${bindir} \
                  -DCMAKE_INSTALL_SBINDIR=${sbindir} \
                  -DCMAKE_INSTALL_SYSCONFDIR=${sysconfdir} \
                  -DCMAKE_INSTALL_LIBDIR=${libdir} \ 
                  -DLOG_DIR=/var/log/hiawatha \
                  -DPID_DIR=/var/run \
                  -DWEBROOT_DIR=/var/www/hiawatha \
                  -DWORK_DIR=/var/lib/hiawatha "

do_install_append() {

	# Copy over init script
  mkdir -p ${D}${sysconfdir}/init.d
  install -m 0755 ${WORKDIR}/hiawatha-init ${D}${sysconfdir}/init.d/hiawatha

  # Copy over custom configuration
  mkdir -p ${D}${sysconfdir}/hiawatha 
  install -m 0644 ${WORKDIR}/hiawatha.conf ${D}${sysconfdir}/hiawatha/hiawatha.conf

}

[-- Attachment #3: hiawatha.conf --]
[-- Type: text/plain, Size: 2731 bytes --]

# Hiawatha main configuration file
#


# GENERAL SETTINGS
#
#ServerId = www-data
ConnectionsTotal = 150
ConnectionsPerIP = 10
SystemLogfile = /var/log/hiawatha/system.log
GarbageLogfile = /var/log/hiawatha/garbage.log

# SSL settings
#
#AllowedCiphers = RC4-SHA:RC4-MD5:DHE-RSA-AES256-SHA:DHE-DSS-AES256-SHA:AES256-SHA:DHE-RSA-AES128-SHA:DHE-DSS-AES128-SHA:AES128-SHA

# BINDING SETTINGS
# A binding is where a client can connect to.
#
Binding {
	Port = 80
#	Interface = 127.0.0.1
#	MaxKeepAlive = 30
#	TimeForRequest = 3,20
}
#
#Binding {
#	Port = 443
#	Interface = ::1
#	MaxKeepAlive = 30
#	TimeForRequest = 3,20
#	SSLcertFile = hiawatha.pem
#}


# BANNING SETTINGS
# Deny service to clients who misbehave.
#
#BanOnGarbage = 300
#BanOnMaxPerIP = 60
#BanOnMaxReqSize = 300
#KickOnBan = yes
#RebanDuringBan = yes


# COMMON GATEWAY INTERFACE (CGI) SETTINGS
# These settings can be used to run CGI applications. Use the 'php-fcgi'
# tool to start PHP as a FastCGI daemon.
#
#CGIhandler = /usr/bin/perl:pl
CGIhandler = /usr/bin/php-cgi:php
#CGIhandler = /usr/bin/python:py
#CGIhandler = /usr/bin/ruby:rb
#CGIhandler = /usr/bin/ssi-cgi:shtml
#CGIextension = cgi
#
#FastCGIserver {
#	FastCGIid = PHP5
#	ConnectTo = 10.0.0.100:2005, 10.0.0.101:2005
#	Extension = php, php5
#	SessionTimeout = 30
#}


# URL TOOLKIT
# This URL toolkit rule was made for the Banshee PHP framework, which
# can be downloaded from http://www.hiawatha-webserver.org/banshee
#
#UrlToolkit {
#	ToolkitID = banshee
#	RequestURI isfile Return
#	Match ^/(css|files|images|js)/ Return
#	Match ^/(favicon.ico|robots.txt|sitemap.xml)$ Return
#	Match .*\?(.*) Rewrite /index.php?$1
#	Match .* Rewrite /index.php
#}


# DEFAULT WEBSITE
# It is wise to use your IP address as the hostname of the default website
# and give it a blank webpage. By doing so, automated webscanners won't find
# your possible vulnerable website.
#
Hostname = 127.0.0.1
WebsiteRoot = /var/www/hiawatha
StartFile = index.php
AccessLogfile = /var/log/hiawatha/access.log
ErrorLogfile = /var/log/hiawatha/error.log
ExecuteCGI = yes
#ErrorHandler = 404:/error.cgi


# VIRTUAL HOSTS
# Use a VirtualHost section to declare the websites you want to host.
#
#VirtualHost {
#	Hostname = www.my-domain.com
#	WebsiteRoot = /var/www/my-domain/public
#	StartFile = index.php
#	AccessLogfile = /var/www/my-domain/log/access.log
#	ErrorLogfile = /var/www/my-domain/log/error.log
#	TimeForCGI = 5
#	UseFastCGI = PHP5
#	UseToolkit = banshee
#}


# DIRECTORY SETTINGS
# You can specify some settings per directory.
#
#Directory {
#	Path = /home/baduser
#	ExecuteCGI = no
#	UploadSpeed = 10,2
#}

[-- Attachment #4: hiawatha-init --]
[-- Type: text/plain, Size: 645 bytes --]

#!/bin/sh

PATH=/sbin:/bin:/usr/sbin:/usr/bin
DAEMON=/usr/sbin/hiawatha
NAME=hiawatha
DESC="Hiawatha Web Server"
OPTS=""

case "$1" in
  start)
	echo -n "Starting $DESC: "
	start-stop-daemon --start -x "$DAEMON" -- $OPTS
	echo "$NAME."
	;;
  stop)
	echo -n "Stopping $DESC: "
	start-stop-daemon --stop -x "$DAEMON"
	echo "$NAME."
	;;
  restart|force-reload)
	echo -n "Restarting $DESC: "
	start-stop-daemon --stop -x "$DAEMON"
	sleep 1
	start-stop-daemon --start -x "$DAEMON" -- $OPTS
	echo "$NAME."
	;;
  *)
	N=/etc/init.d/$NAME
	echo "Usage: $N {start|stop|restart|force-reload}" >&2
	exit 1
	;;
esac

exit 0

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Apache recipe?
  2012-06-20 15:14 ` Jack Mitchell
  2012-06-20 15:16   ` Marcin Juszkiewicz
@ 2012-06-20 16:47   ` Koen Kooi
  1 sibling, 0 replies; 5+ messages in thread
From: Koen Kooi @ 2012-06-20 16:47 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer


Op 20 jun. 2012, om 17:14 heeft Jack Mitchell het volgende geschreven:

> On 20/06/12 16:02, Marcin Juszkiewicz wrote:
>> Does someone has recipe for Apache? I want to make LAMP image for our
>> tests and so far my choices are lighttpd or creation of new recipes for
>> Apache (based on 2.2.17 from OE classic).
>> 
>> _______________________________________________
>> Openembedded-core mailing list
>> Openembedded-core@lists.openembedded.org
>> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
> 
> Last time I checked the PHP recipe needs a bit of love too, I've done a slightly updated customised build but it's a fantastic hackfest.

There's a php recipe in meta-oe, but as you say, it's ugly


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2012-06-20 16:58 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-20 15:02 Apache recipe? Marcin Juszkiewicz
2012-06-20 15:14 ` Jack Mitchell
2012-06-20 15:16   ` Marcin Juszkiewicz
2012-06-20 15:23     ` Jack Mitchell
2012-06-20 16:47   ` Koen Kooi

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.