ServBay에는 간단한 구성과 자동 HTTPS로 유명한 Caddy라는 웹 서버가 내장되어 있습니다. ServBay는 이미 기본적으로 Rewrite 규칙을 구성해 놓았으므로 일반적으로 사용자는 이를 추가로 구성할 필요가 없습니다. 이 기사에서는 Laravel 및 WordPress의 예제를 사용하여 NGINX 웹사이트를 ServBay로 마이그레이션하는 방법을 자세히 설명합니다.
웹사이트를 마이그레이션하려면 기존 구성과 파일을 새 서버 환경으로 이전해야 합니다. ServBay는 Caddy를 웹 서버로 사용하며 대부분의 PHP 프레임워크 및 CMS 시스템의 경우 ServBay는 재작성 규칙을 추가로 구성하지 않고도 즉시 작동합니다.
마이그레이션을 시작하기 전에 모든 웹사이트 파일과 데이터베이스를 백업했는지 확인하세요. 마이그레이션 중에 다양한 문제가 발생할 수 있으므로 백업이 중요합니다.
다음은 Laravel 웹사이트의 일반적인 NGINX 구성 파일입니다.
server { listen 80; server_name laravel.demo; root /Applications/ServBay/www/laravel/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } location ~ \.php$ { include fastcgi_params; fastcgi_pass unix:/Applications/ServBay/tmp/php-cgi.sock; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; } location ~ /\.ht { deny all; } }
캐디 구성
중요 공지
ServBay에는 Rewrite 규칙과 PHP 처리 규칙이 기본적으로 이미 구성되어 있으므로 사용자가 수동으로 구성 파일을 작성할 필요가 없습니다.
다음은 비교와 이해를 위한 캐디 구성의 이론적인 예입니다.
laravel.demo { root * /Applications/ServBay/www/laravel/public php_fastcgi unix//Applications/ServBay/tmp/php-cgi.sock file_server @notStatic { not { file { try_files {path} {path}/ /index.php?{query} } } } rewrite @notStatic /index.php
다음은 WordPress 웹사이트의 일반적인 NGINX 구성 파일입니다.
server { listen 80; server_name wordpress.demo; root /Applications/ServBay/www/wordpress; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } location ~ \.php$ { include fastcgi_params; fastcgi_pass unix:/Applications/ServBay/tmp/php-cgi.sock; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; } location ~ /\.ht { deny all; } }
중요 공지
ServBay에는 Rewrite 규칙과 PHP 처리 규칙이 기본적으로 이미 구성되어 있으므로 사용자가 수동으로 구성 파일을 작성할 필요가 없습니다.
비교와 이해를 위한 캐디 구성의 이론적인 예는 다음과 같습니다.
wordpress.demo { root * /Applications/ServBay/www/wordpress php_fastcgi unix//Applications/ServBay/tmp/php-cgi.sock file_server @notStatic { not { file { try_files {path} {path}/ /index.php?{query} } } } rewrite @notStatic /index.php }
NGINX 웹사이트를 ServBay의 Caddy 서버로 마이그레이션하는 것은 매우 간단하며 구성 수정이 필요하지 않습니다. 사용자는 자신의 웹사이트를 ServBay에 추가하기만 하면 됩니다. 캐디의 구성 파일 구문은 간단하고 읽기 쉽습니다. ServBay는 기본적으로 Rewrite 규칙과 PHP 처리를 이미 구성했기 때문에 일반적으로 사용자는 추가 구성이 필요하지 않습니다. 이 글은 Laravel 및 WordPress 웹사이트를 ServBay로 마이그레이션하는 과정을 안내합니다.
위 내용은 NGINX 웹사이트를 ServBay로 마이그레이션하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!