- rpm -ivh http://nginx.org/packages/centos/6/noarch/RPMS/nginx-release-centos-6-0.el6.ngx.noarch.rpm
- yum -y install nginx
- yum -y php-fpm
- service php-fpm restart
- service nginx restart
- chkconfig php-fpm on
- chkconfig nginx on
-
- server {
- listen 80;
- server_name localhost;
- autoindex on;
- #charset koi8-r;
- #access_log /var/log/nginx/log/host.access.log main;
- location / {
- root /var/www/html;
- index index.html index.htm index.php;
- }
- location ~ \.php$ {
- root /var/www/html;
- fastcgi_pass 127.0.0.1:9000;
- fastcgi_index index.php;
- fastcgi_param SCRIPT_FILENAME /var/www/html$fastcgi_script_name; # $document_root
- include fastcgi_params;
- }....
vi /var/www/html/index.php
<?php
phpinfo();
?>
时间: 2024-10-12 12:02:28