Přejít na menu

Custom Apache installation

Správa článků

Vyhledávání Vyhledávání
1.7.2014 14:19
,
Počet přečtení: 698

How to run the single-purpose Apache server with PHP.

Install Apache and php5

aptitude install apache2 php5

Prepare the config file

Create directory (in /var/www/ zum beispiel) with config file.

Example config file - important lines:

Load PHP module for Apache:
LoadModule php5_module modules/libphp5.so
Set Apache to handle *.php files with PHP handler:
<FilesMatch \.php$>
SetHandler application/x-httpd-php
</FilesMatch>

Run the server

apache2 -D NO_DETACH -f /var/www/adminer/conf/adminer.conf

Or add it to the /etc/apache2/sites-available and enable it with a2ensite site.mysite.com

Vytvořil 30. července 2014 ve 21:14:19 mira. Upravováno 1x, naposledy 30. července 2014 ve 21:14:36, mira


Diskuze ke článku

Vložení nového komentáře
*
*
*