業務用エアコン関連の技術情報、エラーコード、環境問題対策に関する別サイト「エアコンの安全な修理・適切なフロン回収」

FreeBSD13.5 : WEB Server(Apache2) , MySQL8

1. Apache2

1.1 Install

1.2 apache24 - setting

①extra/httpd-default.conf editing

➁httpd.conf editing

If you access the server (http://server-IP [or domain name]) from the client, you should see something like the following

1.3 Virtual Host Settings

document root: /usr/local/www/apache24/data/[FQDN]/
dpmain : [FQDN]
Set up virtual hosts

Create new bsd-vhost.conf under /usr/local/etc/apache24/extra(bsd-vhost in bsd-vhost.conf is an arbitrary name)

directory creation

Apache restart

1.4 apache24 - Running cgi

Check if it is installed with the following command

httpd.conf editing

Apache restart

2. MySQL Install

Install MySQL before installing PHP

Search all available MySQL versions in the default FreeBSD repository.

Install mysql80

Check version

Enable and start MySQL

MySQL Startup Confirmation

Running Security Scripts

To log in to the mysql server afterwards
mysql -u root -p
Enter password: Password set above

3. apache24 - PHP 8

3.1 PHP Install

Search all available PHP packages in the default FreeBSD repository.

Install PHP8.3

Install common PHP modules

PHP version confirmation

PHP-FPM version confirmation

Enable PHP-FPM to start automatically at startup

Start PHP-FPM

3.2 PHP - initialization

①Configuration file "php.ini" setting

➁httpd.conf editing

Apache Configuration Check
If "Syntax OK" is displayed, it is normal.

Apache restart

3.3 Configuring Apache with PHP-FPM

Apache uses mod_proxy and mod_proxy_fcgi modules to process FastCGI requests and connect to the PHP-FPM service.
It enables the required Apache modules and forwards all PHP application requests to PHP-FPM service port 9000.

httpd.conf editing

Edit Virtual Host Configuration File

Apache php-fpm restart

3.4 PHP operation check

Create "info.php" in the document root of the web server

If you access "http://[FQDN]/info.php" with a browser and see the following, it is OK

Copied title and URL