<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.alpinelinux.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Viperfang</id>
	<title>Alpine Linux - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.alpinelinux.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Viperfang"/>
	<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/wiki/Special:Contributions/Viperfang"/>
	<updated>2026-04-27T01:01:09Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.40.0</generator>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=PhpMyAdmin&amp;diff=31061</id>
		<title>PhpMyAdmin</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=PhpMyAdmin&amp;diff=31061"/>
		<updated>2025-09-27T10:50:52Z</updated>

		<summary type="html">&lt;p&gt;Viperfang: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://www.phpmyadmin.net phpMyAdmin] is a free software tool written in PHP intended to handle the administration of MySQL over the World Wide Web. phpMyAdmin supports a wide range of operations with MySQL. The most frequently used operations are supported by the user interface (managing databases, tables, fields, relations, indexes, users, permissions, etc), while you still have the ability to directly execute any SQL statement. &lt;br /&gt;
&lt;br /&gt;
== Install lighttpd, PHP and MySql ==&lt;br /&gt;
{{:Setting Up Lighttpd With FastCGI}}&lt;br /&gt;
&lt;br /&gt;
Install extra packages:&lt;br /&gt;
{{Cmd|apk add mariadb mariadb-client phpmyadmin}}&lt;br /&gt;
&lt;br /&gt;
== Configuring MySql ==&lt;br /&gt;
&lt;br /&gt;
{{Cmd|&amp;lt;nowiki&amp;gt;mariadb-install-db --user=mysql --datadir=/var/lib/mysql&lt;br /&gt;
rc-service mariadb start &amp;amp;&amp;amp; rc-update add mariadb default&lt;br /&gt;
mariadb-secure-installation&amp;lt;/nowiki&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
== Configuring phpMyAdmin ==&lt;br /&gt;
&lt;br /&gt;
Change the folder permissions&lt;br /&gt;
&lt;br /&gt;
{{Cmd|chmod -R 755 /usr/share/webapps/&lt;br /&gt;
chown -R lighttpd:lighttpd /usr/share/webapps/phpmyadmin&lt;br /&gt;
chown -R lighttpd:lighttpd /etc/phpmyadmin}}&lt;br /&gt;
&lt;br /&gt;
Create a symlink to the &#039;&#039;phpmyadmin&#039;&#039; folder&lt;br /&gt;
&lt;br /&gt;
{{Cmd|ln -s /usr/share/webapps/phpmyadmin/ /var/www/localhost/htdocs/phpmyadmin}}&lt;br /&gt;
&lt;br /&gt;
Generate a Cookie encryption key&lt;br /&gt;
{{Cmd|php -r &#039;echo bin2hex(random_bytes(16)) . PHP_EOL;&#039;}}&lt;br /&gt;
&lt;br /&gt;
Put the key in the phpmyadmin configuration file {{Path|/etc/phpmyadmin/config.inc.php}}&lt;br /&gt;
{{cat|/etc/phpmyadmin/config.inc.php|&amp;lt;nowiki&amp;gt;...&lt;br /&gt;
$cfg[&#039;blowfish_secret&#039;] = sodium_hex2bin(&#039;cookie_encryption_key_here&#039;);&lt;br /&gt;
...&amp;lt;/nowiki&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
== Log on your phpMyAdmin ==&lt;br /&gt;
&lt;br /&gt;
Browse to: &amp;lt;nowiki&amp;gt;https://WEBSERVER_IP_ADDRESS/phpmyadmin&amp;lt;/nowiki&amp;gt; and logon to phpMyAdmin using your MySQL user and password.&lt;br /&gt;
&lt;br /&gt;
[[Category:PHP]]&lt;br /&gt;
[[Category:SQL]]&lt;/div&gt;</summary>
		<author><name>Viperfang</name></author>
	</entry>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=PhpMyAdmin&amp;diff=31060</id>
		<title>PhpMyAdmin</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=PhpMyAdmin&amp;diff=31060"/>
		<updated>2025-09-27T10:48:37Z</updated>

		<summary type="html">&lt;p&gt;Viperfang: add cookie encryption key&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://www.phpmyadmin.net phpMyAdmin] is a free software tool written in PHP intended to handle the administration of MySQL over the World Wide Web. phpMyAdmin supports a wide range of operations with MySQL. The most frequently used operations are supported by the user interface (managing databases, tables, fields, relations, indexes, users, permissions, etc), while you still have the ability to directly execute any SQL statement. &lt;br /&gt;
&lt;br /&gt;
== Install lighttpd, PHP and MySql ==&lt;br /&gt;
{{:Setting Up Lighttpd With FastCGI}}&lt;br /&gt;
&lt;br /&gt;
Install extra packages:&lt;br /&gt;
{{Cmd|apk add mariadb mariadb-client phpmyadmin}}&lt;br /&gt;
&lt;br /&gt;
== Configuring MySql ==&lt;br /&gt;
&lt;br /&gt;
{{Cmd|&amp;lt;nowiki&amp;gt;mariadb-install-db --user=mysql --datadir=/var/lib/mysql&lt;br /&gt;
rc-service mariadb start &amp;amp;&amp;amp; rc-update add mariadb default&lt;br /&gt;
mariadb-secure-installation&amp;lt;/nowiki&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
== Configuring phpMyAdmin ==&lt;br /&gt;
&lt;br /&gt;
Change the folder permissions&lt;br /&gt;
&lt;br /&gt;
{{Cmd|chmod -R 755 /usr/share/webapps/&lt;br /&gt;
chown -R lighttpd:lighttpd /etc/phpmyadmin}}&lt;br /&gt;
&lt;br /&gt;
Create a symlink to the &#039;&#039;phpmyadmin&#039;&#039; folder&lt;br /&gt;
&lt;br /&gt;
{{Cmd|ln -s /usr/share/webapps/phpmyadmin/ /var/www/localhost/htdocs/phpmyadmin}}&lt;br /&gt;
&lt;br /&gt;
Generate a Cookie encryption key&lt;br /&gt;
{{Cmd|php -r &#039;echo bin2hex(random_bytes(16)) . PHP_EOL;&#039;}}&lt;br /&gt;
&lt;br /&gt;
Put the key in the phpmyadmin configuration file {{Path|/etc/phpmyadmin/config.inc.php}}&lt;br /&gt;
{{cat|/etc/phpmyadmin/config.inc.php|&amp;lt;nowiki&amp;gt;...&lt;br /&gt;
$cfg[&#039;blowfish_secret&#039;] = sodium_hex2bin(&#039;cookie_encryption_key_here&#039;);&lt;br /&gt;
...&amp;lt;/nowiki&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
== Log on your phpMyAdmin ==&lt;br /&gt;
&lt;br /&gt;
Browse to: &amp;lt;nowiki&amp;gt;https://WEBSERVER_IP_ADDRESS/phpmyadmin&amp;lt;/nowiki&amp;gt; and logon to phpMyAdmin using your MySQL user and password.&lt;br /&gt;
&lt;br /&gt;
[[Category:PHP]]&lt;br /&gt;
[[Category:SQL]]&lt;/div&gt;</summary>
		<author><name>Viperfang</name></author>
	</entry>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=PhpMyAdmin&amp;diff=31059</id>
		<title>PhpMyAdmin</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=PhpMyAdmin&amp;diff=31059"/>
		<updated>2025-09-27T10:26:52Z</updated>

		<summary type="html">&lt;p&gt;Viperfang: Use the package as it bring in dependencies&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://www.phpmyadmin.net phpMyAdmin] is a free software tool written in PHP intended to handle the administration of MySQL over the World Wide Web. phpMyAdmin supports a wide range of operations with MySQL. The most frequently used operations are supported by the user interface (managing databases, tables, fields, relations, indexes, users, permissions, etc), while you still have the ability to directly execute any SQL statement. &lt;br /&gt;
&lt;br /&gt;
== Install lighttpd, PHP and MySql ==&lt;br /&gt;
{{:Setting Up Lighttpd With FastCGI}}&lt;br /&gt;
&lt;br /&gt;
Install extra packages:&lt;br /&gt;
{{Cmd|apk add mariadb mariadb-client phpmyadmin}}&lt;br /&gt;
&lt;br /&gt;
== Configuring MySql ==&lt;br /&gt;
&lt;br /&gt;
{{Cmd|&amp;lt;nowiki&amp;gt;mariadb-install-db --user=mysql --datadir=/var/lib/mysql&lt;br /&gt;
rc-service mariadb start &amp;amp;&amp;amp; rc-update add mariadb default&lt;br /&gt;
mariadb-secure-installation&amp;lt;/nowiki&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
== Configuring phpMyAdmin ==&lt;br /&gt;
&lt;br /&gt;
Change the folder permissions&lt;br /&gt;
&lt;br /&gt;
{{Cmd|chmod -R 755 /usr/share/webapps/&lt;br /&gt;
chown -R lighttpd:lighttpd /etc/phpmyadmin}}&lt;br /&gt;
&lt;br /&gt;
Create a symlink to the &#039;&#039;phpmyadmin&#039;&#039; folder&lt;br /&gt;
&lt;br /&gt;
{{Cmd|ln -s /usr/share/webapps/phpmyadmin/ /var/www/localhost/htdocs/phpmyadmin}}&lt;br /&gt;
&lt;br /&gt;
== Log on your phpMyAdmin ==&lt;br /&gt;
&lt;br /&gt;
Browse to: &amp;lt;nowiki&amp;gt;https://WEBSERVER_IP_ADDRESS/phpmyadmin&amp;lt;/nowiki&amp;gt; and logon to phpMyAdmin using your MySQL user and password.&lt;br /&gt;
&lt;br /&gt;
[[Category:PHP]]&lt;br /&gt;
[[Category:SQL]]&lt;/div&gt;</summary>
		<author><name>Viperfang</name></author>
	</entry>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=PhpMyAdmin&amp;diff=31058</id>
		<title>PhpMyAdmin</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=PhpMyAdmin&amp;diff=31058"/>
		<updated>2025-09-27T09:59:29Z</updated>

		<summary type="html">&lt;p&gt;Viperfang: change move so exact version isn&amp;#039;t required&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://www.phpmyadmin.net phpMyAdmin] is a free software tool written in PHP intended to handle the administration of MySQL over the World Wide Web. phpMyAdmin supports a wide range of operations with MySQL. The most frequently used operations are supported by the user interface (managing databases, tables, fields, relations, indexes, users, permissions, etc), while you still have the ability to directly execute any SQL statement. &lt;br /&gt;
&lt;br /&gt;
== Install lighttpd, PHP and MySql ==&lt;br /&gt;
{{:Setting Up Lighttpd With FastCGI}}&lt;br /&gt;
&lt;br /&gt;
Install extra packages:&lt;br /&gt;
{{Cmd|apk add mariadb mariadb-client php-mysqli}}&lt;br /&gt;
&lt;br /&gt;
== Configuring MySql ==&lt;br /&gt;
&lt;br /&gt;
{{Cmd|&amp;lt;nowiki&amp;gt;mariadb-install-db --user=mysql --datadir=/var/lib/mysql&lt;br /&gt;
rc-service mariadb start &amp;amp;&amp;amp; rc-update add mariadb default&lt;br /&gt;
mariadb-secure-installation&amp;lt;/nowiki&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
== Installing phpMyAdmin ==&lt;br /&gt;
&lt;br /&gt;
Create a directory named {{Path|webapps}}&lt;br /&gt;
&lt;br /&gt;
{{Cmd|mkdir -p /usr/share/webapps/}}&lt;br /&gt;
Download the source code&lt;br /&gt;
&lt;br /&gt;
{{Cmd|cd /usr/share/webapps&lt;br /&gt;
wget https://files.phpmyadmin.net/phpMyAdmin/5.2.2/phpMyAdmin-5.2.2-all-languages.tar.gz -O phpMyAdmin.tar.gz}}&lt;br /&gt;
&lt;br /&gt;
Unpack the archive and remove the archive&lt;br /&gt;
&lt;br /&gt;
{{Cmd|tar zxvf phpMyAdmin.tar.gz&lt;br /&gt;
rm phpMyAdmin.tar.gz}}&lt;br /&gt;
&lt;br /&gt;
Rename the folder&lt;br /&gt;
&lt;br /&gt;
{{Cmd|mv phpMyAdmin-* phpmyadmin}}&lt;br /&gt;
 &lt;br /&gt;
Change the folder permissions&lt;br /&gt;
&lt;br /&gt;
{{Cmd|chmod -R 755 /usr/share/webapps/}}&lt;br /&gt;
&lt;br /&gt;
Create a symlink to the &#039;&#039;phpmyadmin&#039;&#039; folder&lt;br /&gt;
&lt;br /&gt;
{{Cmd|ln -s /usr/share/webapps/phpmyadmin/ /var/www/localhost/htdocs/phpmyadmin}}&lt;br /&gt;
&lt;br /&gt;
== Log on your phpMyAdmin ==&lt;br /&gt;
&lt;br /&gt;
Browse to: &amp;lt;nowiki&amp;gt;https://WEBSERVER_IP_ADDRESS/phpmyadmin&amp;lt;/nowiki&amp;gt; and logon to phpMyAdmin using your MySQL user and password.&lt;br /&gt;
&lt;br /&gt;
[[Category:PHP]]&lt;br /&gt;
[[Category:SQL]]&lt;/div&gt;</summary>
		<author><name>Viperfang</name></author>
	</entry>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=PhpMyAdmin&amp;diff=31057</id>
		<title>PhpMyAdmin</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=PhpMyAdmin&amp;diff=31057"/>
		<updated>2025-09-27T09:57:40Z</updated>

		<summary type="html">&lt;p&gt;Viperfang: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://www.phpmyadmin.net phpMyAdmin] is a free software tool written in PHP intended to handle the administration of MySQL over the World Wide Web. phpMyAdmin supports a wide range of operations with MySQL. The most frequently used operations are supported by the user interface (managing databases, tables, fields, relations, indexes, users, permissions, etc), while you still have the ability to directly execute any SQL statement. &lt;br /&gt;
&lt;br /&gt;
== Install lighttpd, PHP and MySql ==&lt;br /&gt;
{{:Setting Up Lighttpd With FastCGI}}&lt;br /&gt;
&lt;br /&gt;
Install extra packages:&lt;br /&gt;
{{Cmd|apk add mariadb mariadb-client php-mysqli}}&lt;br /&gt;
&lt;br /&gt;
== Configuring MySql ==&lt;br /&gt;
&lt;br /&gt;
{{Cmd|&amp;lt;nowiki&amp;gt;mariadb-install-db --user=mysql --datadir=/var/lib/mysql&lt;br /&gt;
rc-service mariadb start &amp;amp;&amp;amp; rc-update add mariadb default&lt;br /&gt;
mariadb-secure-installation&amp;lt;/nowiki&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
== Installing phpMyAdmin ==&lt;br /&gt;
&lt;br /&gt;
Create a directory named {{Path|webapps}}&lt;br /&gt;
&lt;br /&gt;
{{Cmd|mkdir -p /usr/share/webapps/}}&lt;br /&gt;
Download the source code&lt;br /&gt;
&lt;br /&gt;
{{Cmd|cd /usr/share/webapps&lt;br /&gt;
wget https://files.phpmyadmin.net/phpMyAdmin/5.2.2/phpMyAdmin-5.2.2-all-languages.tar.gz -O phpMyAdmin.tar.gz}}&lt;br /&gt;
&lt;br /&gt;
Unpack the archive and remove the archive&lt;br /&gt;
&lt;br /&gt;
{{Cmd|tar zxvf phpMyAdmin.tar.gz&lt;br /&gt;
rm phpMyAdmin.tar.gz}}&lt;br /&gt;
&lt;br /&gt;
Rename the folder&lt;br /&gt;
&lt;br /&gt;
{{Cmd|mv phpMyAdmin-5.2.1-all-languages phpmyadmin}}&lt;br /&gt;
 &lt;br /&gt;
Change the folder permissions&lt;br /&gt;
&lt;br /&gt;
{{Cmd|chmod -R 755 /usr/share/webapps/}}&lt;br /&gt;
&lt;br /&gt;
Create a symlink to the &#039;&#039;phpmyadmin&#039;&#039; folder&lt;br /&gt;
&lt;br /&gt;
{{Cmd|ln -s /usr/share/webapps/phpmyadmin/ /var/www/localhost/htdocs/phpmyadmin}}&lt;br /&gt;
&lt;br /&gt;
== Log on your phpMyAdmin ==&lt;br /&gt;
&lt;br /&gt;
Browse to: &amp;lt;nowiki&amp;gt;https://WEBSERVER_IP_ADDRESS/phpmyadmin&amp;lt;/nowiki&amp;gt; and logon to phpMyAdmin using your MySQL user and password.&lt;br /&gt;
&lt;br /&gt;
[[Category:PHP]]&lt;br /&gt;
[[Category:SQL]]&lt;/div&gt;</summary>
		<author><name>Viperfang</name></author>
	</entry>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=PhpMyAdmin&amp;diff=31056</id>
		<title>PhpMyAdmin</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=PhpMyAdmin&amp;diff=31056"/>
		<updated>2025-09-27T09:48:45Z</updated>

		<summary type="html">&lt;p&gt;Viperfang: Updated packages and commands for mariadb&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://www.phpmyadmin.net phpMyAdmin] is a free software tool written in PHP intended to handle the administration of MySQL over the World Wide Web. phpMyAdmin supports a wide range of operations with MySQL. The most frequently used operations are supported by the user interface (managing databases, tables, fields, relations, indexes, users, permissions, etc), while you still have the ability to directly execute any SQL statement. &lt;br /&gt;
&lt;br /&gt;
== Install lighttpd, PHP and MySql ==&lt;br /&gt;
{{:Setting Up Lighttpd With FastCGI}}&lt;br /&gt;
&lt;br /&gt;
Install extra packages:&lt;br /&gt;
{{Cmd|apk add mariadb mariadb-client php-mysqli}}&lt;br /&gt;
&lt;br /&gt;
== Configuring MySql ==&lt;br /&gt;
&lt;br /&gt;
{{Cmd|&amp;lt;nowiki&amp;gt;mariadb-install-db --user=mysql --datadir=/var/lib/mysql&lt;br /&gt;
rc-service mariadb start &amp;amp;&amp;amp; rc-update add mariadb default&lt;br /&gt;
mariadb-secure-installation&amp;lt;/nowiki&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
== Installing phpMyAdmin ==&lt;br /&gt;
&lt;br /&gt;
Create a directory named {{Path|webapps}}&lt;br /&gt;
&lt;br /&gt;
{{Cmd|mkdir -p /usr/share/webapps/}}&lt;br /&gt;
Download the source code&lt;br /&gt;
&lt;br /&gt;
{{Cmd|cd /usr/share/webapps&lt;br /&gt;
wget https://files.phpmyadmin.net/phpMyAdmin/5.2.1/phpMyAdmin-5.2.1-all-languages.tar.gz}}&lt;br /&gt;
&lt;br /&gt;
Unpack the archive and remove the archive&lt;br /&gt;
&lt;br /&gt;
{{Cmd|tar zxvf phpMyAdmin-5.2.1-all-languages.tar.gz&lt;br /&gt;
rm phpMyAdmin-5.2.1-all-languages.tar.gz}}&lt;br /&gt;
&lt;br /&gt;
Rename the folder&lt;br /&gt;
&lt;br /&gt;
{{Cmd|mv phpMyAdmin-5.2.1-all-languages phpmyadmin}}&lt;br /&gt;
 &lt;br /&gt;
Change the folder permissions&lt;br /&gt;
&lt;br /&gt;
{{Cmd|chmod -R 755 /usr/share/webapps/}}&lt;br /&gt;
&lt;br /&gt;
Create a symlink to the &#039;&#039;phpmyadmin&#039;&#039; folder&lt;br /&gt;
&lt;br /&gt;
{{Cmd|ln -s /usr/share/webapps/phpmyadmin/ /var/www/localhost/htdocs/phpmyadmin}}&lt;br /&gt;
&lt;br /&gt;
== Log on your phpMyAdmin ==&lt;br /&gt;
&lt;br /&gt;
Browse to: &amp;lt;nowiki&amp;gt;https://WEBSERVER_IP_ADDRESS/phpmyadmin&amp;lt;/nowiki&amp;gt; and logon to phpMyAdmin using your MySQL user and password.&lt;br /&gt;
&lt;br /&gt;
[[Category:PHP]]&lt;br /&gt;
[[Category:SQL]]&lt;/div&gt;</summary>
		<author><name>Viperfang</name></author>
	</entry>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=Setting_Up_Lighttpd_With_FastCGI&amp;diff=31055</id>
		<title>Setting Up Lighttpd With FastCGI</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=Setting_Up_Lighttpd_With_FastCGI&amp;diff=31055"/>
		<updated>2025-09-27T09:21:31Z</updated>

		<summary type="html">&lt;p&gt;Viperfang: Use default version of php, as the binary is sym linked anyway. 82 was already out of date.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Basic Installation ==&lt;br /&gt;
&lt;br /&gt;
For installing the additional packages first &#039;&#039;&#039;[[Repositories#Managing_repositories|activate community packages]]&#039;&#039;&#039; and update the package index&lt;br /&gt;
&lt;br /&gt;
Install the required packages:&lt;br /&gt;
&lt;br /&gt;
{{Cmd|# apk add {{pkg|lighttpd}} {{pkg|php}} {{pkg|fcgi}} {{pkg|php-cgi}}}}&lt;br /&gt;
&lt;br /&gt;
== Configure Lighttpd ==&lt;br /&gt;
&lt;br /&gt;
Edit lighttpd.conf ({{Path|/etc/lighttpd/lighttpd.conf}}) and uncomment the line:&lt;br /&gt;
&lt;br /&gt;
{{cat|/etc/lighttpd/lighttpd.conf|...&lt;br /&gt;
include &amp;quot;mod_fastcgi.conf&amp;quot;&lt;br /&gt;
...}}&lt;br /&gt;
&lt;br /&gt;
== Start &amp;lt;code&amp;gt;lighttpd&amp;lt;/code&amp;gt; service and add it to default runlevel ==&lt;br /&gt;
&lt;br /&gt;
{{Cmd|&amp;lt;nowiki&amp;gt;# rc-service lighttpd start &lt;br /&gt;
# rc-update add lighttpd default&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Server]]&lt;br /&gt;
[[Category:PHP]]&lt;/div&gt;</summary>
		<author><name>Viperfang</name></author>
	</entry>
</feed>