このガイドでは、Nginx をウェブサーバーとして、MySQL をデータベースとして、PHP をサーバーサイドスクリプトとして使用し、Amazon EC2 インスタンス上に PHP ウェブサイトをセットアップするプロセスについて説明します。バージョン管理には Git を使用します。初期セットアップから一般的な問題のトラブルシューティングまで、すべてを説明します。
SSH を使用してインスタンスに接続します:
ssh -i /path/to/your-key.pem ubuntu@your-instance-public-dns
/path/to/your-key.pem をキー ファイルへのパスに置き換え、your-instance-public-dns をインスタンスのパブリック DNS 名に置き換えます。
接続したら、システムを更新してアップグレードします:
sudo apt update sudo apt upgrade -y
Nginx Web サーバーをインストールします:
sudo apt install nginx -y sudo systemctl start nginx sudo systemctl enable nginx
Nginx が実行されていることを確認します:
sudo systemctl status nginx
MySQL サーバーをインストールします:
sudo apt install mysql-server -y sudo systemctl start mysql sudo systemctl enable mysql
MySQL インストールを保護します:
sudo mysql_secure_installation
プロンプトに従って root パスワードを設定し、安全でないデフォルト設定を削除します。
PHP 8.1 (または Ubuntu リポジトリで入手可能な最新の安定バージョン) をインストールします。
sudo apt install php8.1-fpm php8.1-mysql php8.1-common php8.1-cli php8.1-curl php8.1-mbstring php8.1-xml php8.1-zip -y
PHP のインストールを確認します:
php -v
バージョン管理のために Git をインストールします:
sudo apt install git -y
Git のインストールを確認します:
git --version
新しい Nginx サーバー ブロック構成を作成します:
sudo nano /etc/nginx/sites-available/your_domain
次の構成を追加します (your_domain を実際のドメインまたは IP アドレスに置き換えます):
server { listen 80; server_name your_domain www.your_domain; root /var/www/your_domain; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } location ~ \.php$ { fastcgi_pass unix:/var/run/php/php8.1-fpm.sock; fastcgi_index index.php; include fastcgi_params; } location ~ /\.ht { deny all; } }
新しいサイトを有効にします:
sudo ln -s /etc/nginx/sites-available/your_domain /etc/nginx/sites-enabled/
Nginx 構成のテスト:
sudo nginx -t
テストが成功したら、Nginx をリロードします:
sudo systemctl reload nginx
Web ルート ディレクトリを作成します:
sudo mkdir -p /var/www/your_domain sudo chown -R $USER:$USER /var/www/your_domain sudo chmod -R 755 /var/www/your_domain
Web サイト用の既存の Git リポジトリがある場合は、Web ルートにクローンを作成します。
cd /var/www/your_domain git clone https://github.com/your-username/your-repo.git .
https://github.com/your-username/your-repo.git を実際のリポジトリ URL に置き換えます。
新しいプロジェクトを開始する場合は、新しい Git リポジトリを初期化します。
cd /var/www/your_domain git init
Web ファイルに正しいアクセス許可を設定します:
sudo chown -R www-data:www-data /var/www/your_domain sudo find /var/www/your_domain -type d -exec chmod 755 {} \; sudo find /var/www/your_domain -type f -exec chmod 644 {} \;
Ubuntu ユーザーにファイルの管理を許可するには:
sudo usermod -a -G www-data ubuntu sudo chmod g+s /var/www/your_domain
グループの変更を有効にするには、ログアウトしてから再度ログインする必要がある場合があります。
必要に応じて PHP 設定を調整します:
sudo nano /etc/php/8.1/fpm/php.ini
調整する一般的な設定:
upload_max_filesize = 64M post_max_size = 64M max_execution_time = 300 memory_limit = 256M
変更を加えた後、PHP-FPM を再起動します。
sudo systemctl restart php8.1-fpm
HTTPS で Web サイトを保護するには、Let's Encrypt を使用できます。
sudo apt install certbot python3-certbot-nginx -y sudo certbot --nginx -d your_domain -d www.your_domain
プロンプトに従って SSL を設定します。
Nginx エラー ログに「アクセス許可が拒否されました」エラーが発生した場合:
ls -l /var/www/your_domain
ps aux | grep nginx
sudo nano /etc/nginx/nginx.conf
ユーザーが www-data に設定されていることを確認してください。
PHP 関連のエラーの場合:
sudo tail -f /var/log/php8.1-fpm.log
sudo systemctl status php8.1-fpm
ls /var/run/php/php8.1-fpm.sock
Git 権限の問題が発生した場合:
sudo chown -R ubuntu:ubuntu /var/www/your_domain/.git
sudo chown -R ubuntu:ubuntu /var/www/your_domain git pull sudo chown -R www-data:www-data /var/www/your_domain
sudo apt update && sudo apt upgrade -y
Use strong passwords for all services (MySQL, SSH, etc.).
Configure a firewall (e.g., UFW) to restrict incoming traffic:
sudo ufw allow OpenSSH sudo ufw allow 'Nginx Full' sudo ufw enable
sudo apt install fail2ban -y sudo systemctl start fail2ban sudo systemctl enable fail2ban
Regularly backup your website and database.
Monitor your server logs for unusual activity:
sudo tail -f /var/log/nginx/access.log sudo tail -f /var/log/nginx/error.log
Use version control (Git) for all your code changes.
Implement proper error handling and logging in your PHP application.
Use prepared statements or ORM to prevent SQL injection attacks.
Keep your application dependencies up-to-date and use a dependency manager like Composer for PHP projects.
By following this guide, you should have a fully functional PHP website running on an EC2 instance with Nginx, MySQL, and Git.
Remember to adapt the instructions to your specific needs and always prioritize security in your setup.
以上がECith Nginx、MySQL、PHP、および Git での PHP Web サイトのセットアップの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。