Mac OS 없이 NGINX + PHP 구성
사전 요구 사항
Instrues de Configurao
NGINX 구성
Abra o arquivo de configurao do NGINX com o seguinte comando:
code /usr/local/nginx/conf/nginx.conf
최소/파드라오 구성
worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server {
listen 80;
server_name localhost;
charset utf-8;
location / {
root html;
index index.html index.htm index.php;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
3단계
4단계
5단계
6단계
결론
Aps seguir as instrues acima voc dispem de um servidor web local capaz de lhe ajudar em tarefas de desenvolvimento de sites e pginas para web com uso de cdigo em PHP. Tambm possvel realizar implantaes de pequenas solues CMS que se utilizam do PHP como: Wordpress, Grav, Joomla e outros.
크레딧
사진 제공: Alex Knight on Unsplash
Reference
이 문제에 관하여(Mac OS 없이 NGINX + PHP 구성), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/andersonbraz/configurando-nginx-php-no-mac-os-3bnk텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)