<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Instalar Lighttpd, PHP5, MySQL en Ubuntu</title>
	<atom:link href="http://www.tutoriales-ubuntu.com/archives/instalar-lighttpd-php5-mysql-en-ubuntu/feed" rel="self" type="application/rss+xml" />
	<link>http://www.tutoriales-ubuntu.com/archives/instalar-lighttpd-php5-mysql-en-ubuntu</link>
	<description>Todo sobre Ubuntu!</description>
	<lastBuildDate>Tue, 07 Jun 2011 18:21:37 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
	<item>
		<title>By: oosorio</title>
		<link>http://www.tutoriales-ubuntu.com/archives/instalar-lighttpd-php5-mysql-en-ubuntu/comment-page-1#comment-189</link>
		<dc:creator>oosorio</dc:creator>
		<pubDate>Wed, 23 Jun 2010 16:10:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.tutoriales-ubuntu.com/?p=29#comment-189</guid>
		<description>buenos dias, tengo este error:
2010-06-23 11:19:04: (configfile.c.907) source: /etc/lighttpd/lighttpd.conf line: 178 pos: 1 parser failed somehow near here: (EOL)
no se como solucionarlo.

aqui este mi conf
------------------------
# Debian lighttpd configuration file
#

############ Options you really have to take care of ####################

## modules to load
# mod_access, mod_accesslog and mod_alias are loaded by default
# all other module should only be loaded if neccesary
# - saves some time
# - saves memory

server.modules              = (
            &quot;mod_access&quot;,
            &quot;mod_alias&quot;,
            &quot;mod_accesslog&quot;,
            &quot;mod_compress&quot;,
            &quot;mod_fastcgi&quot;,
            &quot;mod_rewrite&quot;,
#           &quot;mod_redirect&quot;,
#           &quot;mod_evhost&quot;,
#           &quot;mod_usertrack&quot;,
#           &quot;mod_rrdtool&quot;,
#           &quot;mod_webdav&quot;,
)

## a static document-root, for virtual-hosting take look at the
## server.virtual-* options
server.document-root       = &quot;/var/www/&quot;

## where to upload files to, purged daily.
server.upload-dirs = ( &quot;/var/cache/lighttpd/uploads&quot; )

## where to send error-messages to
server.errorlog            = &quot;/var/log/lighttpd/error.log&quot;

## files to check for if .../ is requested
index-file.names           = ( &quot;index.php&quot;, &quot;index.html&quot;,
                               &quot;index.htm&quot;, &quot;default.htm&quot;,
                               &quot;index.lighttpd.html&quot; )


## Use the &quot;Content-Type&quot; extended attribute to obtain mime type if possible
# mimetype.use-xattr = &quot;enable&quot;

#### accesslog module
accesslog.filename         = &quot;/var/log/lighttpd/access.log&quot;

)

## a static document-root, for virtual-hosting take look at the
## server.virtual-* options
server.document-root       = &quot;/var/www/&quot;

## where to upload files to, purged daily.
server.upload-dirs = ( &quot;/var/cache/lighttpd/uploads&quot; )

## where to send error-messages to
server.errorlog            = &quot;/var/log/lighttpd/error.log&quot;

## deny access the file-extensions
#
# ~    is for backupfiles from vi, emacs, joe, ...
# .inc is often used for code includes which should in general not be part
#      of the document-root
url.access-deny            = ( &quot;~&quot;, &quot;.inc&quot; )

##
# which extensions should not be handle via static-file transfer
#
# .php, .pl, .fcgi are most often handled by mod_fastcgi or mod_cgi
static-file.exclude-extensions = ( &quot;.php&quot;, &quot;.pl&quot;, &quot;.fcgi&quot; )


######### Options that are good to be but not neccesary to be changed #######

## Use ipv6 only if available. (disabled for while, check #560837)
#include_shell &quot;/usr/share/lighttpd/use-ipv6.pl&quot;

## bind to port (default: 80)
# server.port               = 81

## bind to localhost only (default: all interfaces)
## server.bind                = &quot;localhost&quot;

## error-handler for status 404
#server.error-handler-404  = &quot;/error-handler.html&quot;
#server.error-handler-404  = &quot;/error-handler.php&quot;

## to help the rc.scripts
server.pid-file            = &quot;/var/run/lighttpd.pid&quot;

##
## Format: .html
## -&gt; ..../status-404.html for &#039;File not found&#039;
#server.errorfile-prefix    = &quot;/var/www/&quot;

## virtual directory listings
dir-listing.encoding        = &quot;utf-8&quot;
server.dir-listing          = &quot;enable&quot;

## send unhandled HTTP-header headers to error-log
#debug.dump-unknown-headers  = &quot;enable&quot;
### only root can use these options
#
# chroot() to directory (default: no chroot() )
#server.chroot            = &quot;/&quot;

## change uid to  (default: don&#039;t care)
server.username            = &quot;www-data&quot;

## change uid to  (default: don&#039;t care)
server.groupname           = &quot;www-data&quot;

#### compress module
compress.cache-dir          = &quot;/var/cache/lighttpd/compress/&quot;
compress.filetype           = (&quot;text/plain&quot;, &quot;text/html&quot;, &quot;application/x-javascript&quot;, &quot;text/css&quot;)


#### url handling modules (rewrite, redirect, access)
# url.rewrite                 = ( &quot;^/$&quot;             =&gt; &quot;/server-status&quot; )
# url.redirect                = ( &quot;^/wishlist/(.+)&quot; =&gt; &quot;http://www.123.org/$1&quot; )

#
# define a pattern for the host url finding
# %% =&gt; % sign
# %0 =&gt; domain name + tld
# %1 =&gt; tld
# %2 =&gt; domain name without tld
# %3 =&gt; subdomain 1 name
# %4 =&gt; subdomain 2 name
#
# evhost.path-pattern = &quot;/home/storage/dev/www/%3/htdocs/&quot;

#### expire module
# expire.url                  = ( &quot;/buggy/&quot; =&gt; &quot;access 2 hours&quot;, &quot;/asdhas/&quot; =&gt; &quot;access plus 1 seconds 2 minutes&quot;)

#### rrdtool
# rrdtool.binary = &quot;/usr/bin/rrdtool&quot;
# rrdtool.db-name = &quot;/var/www/lighttpd.rrd&quot;

#### variable usage:
## variable name without &quot;.&quot; is auto prefixed by &quot;var.&quot; and becomes &quot;var.bar&quot;
#bar = 1
#var.mystring = &quot;foo&quot;

## integer add
#bar += 1
## string concat, with integer cast as string, result: &quot;www.foo1.com&quot;
#server.name = &quot;www.&quot; + mystring + var.bar + &quot;.com&quot;
## array merge
#index-file.names = (foo + &quot;.php&quot;) + index-file.names
#index-file.names += (foo + &quot;.php&quot;)


#### external configuration files
## mimetype mapping
include_shell &quot;/usr/share/lighttpd/create-mime.assign.pl&quot;

## load enabled configuration files,
## read /etc/lighttpd/conf-available/README first
include_shell &quot;/usr/share/lighttpd/include-conf-enabled.pl&quot;

#### handle Debian Policy Manual, Section 11.5. urls
## by default allow them only from localhost
## (This must come last due to #445459)
## Note: =~ &quot;127.0.0.1&quot; works with ipv6 enabled, whereas == &quot;127.0.0.1&quot; doesn&#039;t
$HTTP[&quot;remoteip&quot;] =~ &quot;127.0.0.1&quot; {
        alias.url += (
                &quot;/doc/&quot; =&gt; &quot;/usr/share/doc/&quot;,
                &quot;/images/&quot; =&gt; &quot;/usr/share/images/&quot;
        )
$HTTP[&quot;url&quot;] =~ &quot;^/doc/&#124;^/images/&quot; {
                dir-listing.activate = &quot;enable&quot;
        }
}

fastcgi.server = ( &quot;.php&quot; =&gt; ((
&quot;bin-path&quot; =&gt; &quot;/usr/bin/php5-cgi&quot;,
&quot;socket&quot; =&gt; &quot;/tmp/php.socket&quot;,
&quot;max-procs&quot; =&gt; 2,
&quot;bin-environment&quot; =&gt;
(&quot;PHP_FCGI_CHILDREN&quot; =&gt; &quot;4&quot;,
&quot;PHP_FCGI_MAX_REQUESTS&quot; =&gt; &quot;10000&quot;)
))
)
--------------------------------------------------------------------------
agradezco la ayuda que puedan darme 
gracias</description>
		<content:encoded><![CDATA[<p>buenos dias, tengo este error:<br />
2010-06-23 11:19:04: (configfile.c.907) source: /etc/lighttpd/lighttpd.conf line: 178 pos: 1 parser failed somehow near here: (EOL)<br />
no se como solucionarlo.</p>
<p>aqui este mi conf<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
# Debian lighttpd configuration file<br />
#</p>
<p>############ Options you really have to take care of ####################</p>
<p>## modules to load<br />
# mod_access, mod_accesslog and mod_alias are loaded by default<br />
# all other module should only be loaded if neccesary<br />
# &#8211; saves some time<br />
# &#8211; saves memory</p>
<p>server.modules              = (<br />
            &#8220;mod_access&#8221;,<br />
            &#8220;mod_alias&#8221;,<br />
            &#8220;mod_accesslog&#8221;,<br />
            &#8220;mod_compress&#8221;,<br />
            &#8220;mod_fastcgi&#8221;,<br />
            &#8220;mod_rewrite&#8221;,<br />
#           &#8220;mod_redirect&#8221;,<br />
#           &#8220;mod_evhost&#8221;,<br />
#           &#8220;mod_usertrack&#8221;,<br />
#           &#8220;mod_rrdtool&#8221;,<br />
#           &#8220;mod_webdav&#8221;,<br />
)</p>
<p>## a static document-root, for virtual-hosting take look at the<br />
## server.virtual-* options<br />
server.document-root       = &#8220;/var/www/&#8221;</p>
<p>## where to upload files to, purged daily.<br />
server.upload-dirs = ( &#8220;/var/cache/lighttpd/uploads&#8221; )</p>
<p>## where to send error-messages to<br />
server.errorlog            = &#8220;/var/log/lighttpd/error.log&#8221;</p>
<p>## files to check for if &#8230;/ is requested<br />
index-file.names           = ( &#8220;index.php&#8221;, &#8220;index.html&#8221;,<br />
                               &#8220;index.htm&#8221;, &#8220;default.htm&#8221;,<br />
                               &#8220;index.lighttpd.html&#8221; )</p>
<p>## Use the &#8220;Content-Type&#8221; extended attribute to obtain mime type if possible<br />
# mimetype.use-xattr = &#8220;enable&#8221;</p>
<p>#### accesslog module<br />
accesslog.filename         = &#8220;/var/log/lighttpd/access.log&#8221;</p>
<p>)</p>
<p>## a static document-root, for virtual-hosting take look at the<br />
## server.virtual-* options<br />
server.document-root       = &#8220;/var/www/&#8221;</p>
<p>## where to upload files to, purged daily.<br />
server.upload-dirs = ( &#8220;/var/cache/lighttpd/uploads&#8221; )</p>
<p>## where to send error-messages to<br />
server.errorlog            = &#8220;/var/log/lighttpd/error.log&#8221;</p>
<p>## deny access the file-extensions<br />
#<br />
# ~    is for backupfiles from vi, emacs, joe, &#8230;<br />
# .inc is often used for code includes which should in general not be part<br />
#      of the document-root<br />
url.access-deny            = ( &#8220;~&#8221;, &#8220;.inc&#8221; )</p>
<p>##<br />
# which extensions should not be handle via static-file transfer<br />
#<br />
# .php, .pl, .fcgi are most often handled by mod_fastcgi or mod_cgi<br />
static-file.exclude-extensions = ( &#8220;.php&#8221;, &#8220;.pl&#8221;, &#8220;.fcgi&#8221; )</p>
<p>######### Options that are good to be but not neccesary to be changed #######</p>
<p>## Use ipv6 only if available. (disabled for while, check #560837)<br />
#include_shell &#8220;/usr/share/lighttpd/use-ipv6.pl&#8221;</p>
<p>## bind to port (default: 80)<br />
# server.port               = 81</p>
<p>## bind to localhost only (default: all interfaces)<br />
## server.bind                = &#8220;localhost&#8221;</p>
<p>## error-handler for status 404<br />
#server.error-handler-404  = &#8220;/error-handler.html&#8221;<br />
#server.error-handler-404  = &#8220;/error-handler.php&#8221;</p>
<p>## to help the rc.scripts<br />
server.pid-file            = &#8220;/var/run/lighttpd.pid&#8221;</p>
<p>##<br />
## Format: .html<br />
## -&gt; &#8230;./status-404.html for &#8216;File not found&#8217;<br />
#server.errorfile-prefix    = &#8220;/var/www/&#8221;</p>
<p>## virtual directory listings<br />
dir-listing.encoding        = &#8220;utf-8&#8243;<br />
server.dir-listing          = &#8220;enable&#8221;</p>
<p>## send unhandled HTTP-header headers to error-log<br />
#debug.dump-unknown-headers  = &#8220;enable&#8221;<br />
### only root can use these options<br />
#<br />
# chroot() to directory (default: no chroot() )<br />
#server.chroot            = &#8220;/&#8221;</p>
<p>## change uid to  (default: don&#8217;t care)<br />
server.username            = &#8220;www-data&#8221;</p>
<p>## change uid to  (default: don&#8217;t care)<br />
server.groupname           = &#8220;www-data&#8221;</p>
<p>#### compress module<br />
compress.cache-dir          = &#8220;/var/cache/lighttpd/compress/&#8221;<br />
compress.filetype           = (&#8220;text/plain&#8221;, &#8220;text/html&#8221;, &#8220;application/x-javascript&#8221;, &#8220;text/css&#8221;)</p>
<p>#### url handling modules (rewrite, redirect, access)<br />
# url.rewrite                 = ( &#8220;^/$&#8221;             =&gt; &#8220;/server-status&#8221; )<br />
# url.redirect                = ( &#8220;^/wishlist/(.+)&#8221; =&gt; &#8220;http://www.123.org/$1&#8243; )</p>
<p>#<br />
# define a pattern for the host url finding<br />
# %% =&gt; % sign<br />
# %0 =&gt; domain name + tld<br />
# %1 =&gt; tld<br />
# %2 =&gt; domain name without tld<br />
# %3 =&gt; subdomain 1 name<br />
# %4 =&gt; subdomain 2 name<br />
#<br />
# evhost.path-pattern = &#8220;/home/storage/dev/www/%3/htdocs/&#8221;</p>
<p>#### expire module<br />
# expire.url                  = ( &#8220;/buggy/&#8221; =&gt; &#8220;access 2 hours&#8221;, &#8220;/asdhas/&#8221; =&gt; &#8220;access plus 1 seconds 2 minutes&#8221;)</p>
<p>#### rrdtool<br />
# rrdtool.binary = &#8220;/usr/bin/rrdtool&#8221;<br />
# rrdtool.db-name = &#8220;/var/www/lighttpd.rrd&#8221;</p>
<p>#### variable usage:<br />
## variable name without &#8220;.&#8221; is auto prefixed by &#8220;var.&#8221; and becomes &#8220;var.bar&#8221;<br />
#bar = 1<br />
#var.mystring = &#8220;foo&#8221;</p>
<p>## integer add<br />
#bar += 1<br />
## string concat, with integer cast as string, result: &#8220;www.foo1.com&#8221;<br />
#server.name = &#8220;www.&#8221; + mystring + var.bar + &#8220;.com&#8221;<br />
## array merge<br />
#index-file.names = (foo + &#8220;.php&#8221;) + index-file.names<br />
#index-file.names += (foo + &#8220;.php&#8221;)</p>
<p>#### external configuration files<br />
## mimetype mapping<br />
include_shell &#8220;/usr/share/lighttpd/create-mime.assign.pl&#8221;</p>
<p>## load enabled configuration files,<br />
## read /etc/lighttpd/conf-available/README first<br />
include_shell &#8220;/usr/share/lighttpd/include-conf-enabled.pl&#8221;</p>
<p>#### handle Debian Policy Manual, Section 11.5. urls<br />
## by default allow them only from localhost<br />
## (This must come last due to #445459)<br />
## Note: =~ &#8220;127.0.0.1&#8243; works with ipv6 enabled, whereas == &#8220;127.0.0.1&#8243; doesn&#8217;t<br />
$HTTP["remoteip"] =~ &#8220;127.0.0.1&#8243; {<br />
        alias.url += (<br />
                &#8220;/doc/&#8221; =&gt; &#8220;/usr/share/doc/&#8221;,<br />
                &#8220;/images/&#8221; =&gt; &#8220;/usr/share/images/&#8221;<br />
        )<br />
$HTTP["url"] =~ &#8220;^/doc/|^/images/&#8221; {<br />
                dir-listing.activate = &#8220;enable&#8221;<br />
        }<br />
}</p>
<p>fastcgi.server = ( &#8220;.php&#8221; =&gt; ((<br />
&#8220;bin-path&#8221; =&gt; &#8220;/usr/bin/php5-cgi&#8221;,<br />
&#8220;socket&#8221; =&gt; &#8220;/tmp/php.socket&#8221;,<br />
&#8220;max-procs&#8221; =&gt; 2,<br />
&#8220;bin-environment&#8221; =&gt;<br />
(&#8220;PHP_FCGI_CHILDREN&#8221; =&gt; &#8220;4&#8243;,<br />
&#8220;PHP_FCGI_MAX_REQUESTS&#8221; =&gt; &#8220;10000&#8243;)<br />
))<br />
)<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
agradezco la ayuda que puedan darme<br />
gracias</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marc</title>
		<link>http://www.tutoriales-ubuntu.com/archives/instalar-lighttpd-php5-mysql-en-ubuntu/comment-page-1#comment-170</link>
		<dc:creator>Marc</dc:creator>
		<pubDate>Wed, 28 Apr 2010 08:16:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.tutoriales-ubuntu.com/?p=29#comment-170</guid>
		<description>Primero de todo decir que al hacerle el restart al server da estos fallos:
Duplicate config variable in conditional 0 global: fastcgi.server
2010-04-28 10:12:48: (configfile.c.907) source: /etc/lighttpd/conf-enabled/10-fastcgi.conf line: 27 pos: 1 parser failed somehow near here: (EOL) 
2010-04-28 10:12:48: (configfile.c.907) source: /usr/share/lighttpd/include-conf-enabled.pl line: 3 pos: 1 parser failed somehow near here: (EOL) 
2010-04-28 10:12:48: (configfile.c.907) source: /etc/lighttpd/lighttpd.conf line: 171 pos: 1 parser failed somehow near here: (EOL)

y al probar de abrir el archivo sale : 403 - Forbidden</description>
		<content:encoded><![CDATA[<p>Primero de todo decir que al hacerle el restart al server da estos fallos:<br />
Duplicate config variable in conditional 0 global: fastcgi.server<br />
2010-04-28 10:12:48: (configfile.c.907) source: /etc/lighttpd/conf-enabled/10-fastcgi.conf line: 27 pos: 1 parser failed somehow near here: (EOL)<br />
2010-04-28 10:12:48: (configfile.c.907) source: /usr/share/lighttpd/include-conf-enabled.pl line: 3 pos: 1 parser failed somehow near here: (EOL)<br />
2010-04-28 10:12:48: (configfile.c.907) source: /etc/lighttpd/lighttpd.conf line: 171 pos: 1 parser failed somehow near here: (EOL)</p>
<p>y al probar de abrir el archivo sale : 403 &#8211; Forbidden</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tutoriales Ubuntu &#187; Integrar XCache en PHP5 con Lighttpd en Ubutnu</title>
		<link>http://www.tutoriales-ubuntu.com/archives/instalar-lighttpd-php5-mysql-en-ubuntu/comment-page-1#comment-10</link>
		<dc:creator>Tutoriales Ubuntu &#187; Integrar XCache en PHP5 con Lighttpd en Ubutnu</dc:creator>
		<pubDate>Wed, 15 Apr 2009 19:57:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.tutoriales-ubuntu.com/?p=29#comment-10</guid>
		<description>[...] creado al momento de la instalación de Lighttpd con PHP5. Vea el siguiente enlace, en el punto 5: Instalar Lighttpd, PHP5, MySQL en Ubuntu. Entonces, hacemos lo siguiente en nuestro explorador http://192.168.1.10/info.php, donde [...]</description>
		<content:encoded><![CDATA[<p>[...] creado al momento de la instalación de Lighttpd con PHP5. Vea el siguiente enlace, en el punto 5: Instalar Lighttpd, PHP5, MySQL en Ubuntu. Entonces, hacemos lo siguiente en nuestro explorador <a href="http://192.168.1.10/info.php" rel="nofollow">http://192.168.1.10/info.php</a>, donde [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tutoriales Ubuntu &#187; Configurar Dominios (vhosts) en Lighttpd</title>
		<link>http://www.tutoriales-ubuntu.com/archives/instalar-lighttpd-php5-mysql-en-ubuntu/comment-page-1#comment-4</link>
		<dc:creator>Tutoriales Ubuntu &#187; Configurar Dominios (vhosts) en Lighttpd</dc:creator>
		<pubDate>Mon, 13 Apr 2009 15:59:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.tutoriales-ubuntu.com/?p=29#comment-4</guid>
		<description>[...] seguimos los mismos pasos. Para ver el tutorial de como instalar Lighttpd haga clic en: Instalar Lighttpd, PHP5, MySQL en Ubuntu.    Publicado en Lighttpd, Web. Tags: configurar dominios, configurar dominios lighttpd, configurar [...]</description>
		<content:encoded><![CDATA[<p>[...] seguimos los mismos pasos. Para ver el tutorial de como instalar Lighttpd haga clic en: Instalar Lighttpd, PHP5, MySQL en Ubuntu.    Publicado en Lighttpd, Web. Tags: configurar dominios, configurar dominios lighttpd, configurar [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tutoriales Ubuntu &#187; Optimizar el uso de memoria de MySQL</title>
		<link>http://www.tutoriales-ubuntu.com/archives/instalar-lighttpd-php5-mysql-en-ubuntu/comment-page-1#comment-2</link>
		<dc:creator>Tutoriales Ubuntu &#187; Optimizar el uso de memoria de MySQL</dc:creator>
		<pubDate>Fri, 10 Apr 2009 19:56:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.tutoriales-ubuntu.com/?p=29#comment-2</guid>
		<description>[...] conbinar con una instalación de algún servidor Web ligero, como con el siguiente tutorial: Instalar Lighttpd, PHP5, MySQL en Ubuntu.    Publicado en MySQL. Tags: MySQL, mysql ligero, optimizar, optimizar uso de memoria, optimizar [...]</description>
		<content:encoded><![CDATA[<p>[...] conbinar con una instalación de algún servidor Web ligero, como con el siguiente tutorial: Instalar Lighttpd, PHP5, MySQL en Ubuntu.    Publicado en MySQL. Tags: MySQL, mysql ligero, optimizar, optimizar uso de memoria, optimizar [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

