翼度科技»论坛 编程开发 PHP 查看内容

nginx简单配置多个php服务实例教程

9

主题

9

帖子

27

积分

新手上路

Rank: 1

积分
27
nginx简单配置php服务(多个)

摘要:

大部分网站开发语言都要运行在服务器,比如主流的nginx、apache等等,部署服务器环境对于大部分人来说是比较陌生和复杂的,其实搞懂了之后是很简单易用的。今天就记录下部署php+nginx。

系统:mac、linux

1、安装好php和nginx程序,并运行
2、找到nginx.conf文件,默认在/etc/nginx目录下,如果找不到用一下命令查询
  1. sudo find / -name nginx.conf
复制代码
3、修改nginx.conf文件
默认的nginx.conf配置
  1. #user  nobody;
  2. worker_processes  1;

  3. #error_log  logs/error.log;
  4. #error_log  logs/error.log  notice;
  5. #error_log  logs/error.log  info;

  6. #pid        logs/nginx.pid;


  7. events {
  8.     worker_connections  1024;
  9. }


  10. http {
  11.     include       mime.types;
  12.     default_type  application/octet-stream;

  13.     #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
  14.     #                  '$status $body_bytes_sent "$http_referer" '
  15.     #                  '"$http_user_agent" "$http_x_forwarded_for"';

  16.     #access_log  logs/access.log  main;

  17.     sendfile        on;
  18.     #tcp_nopush     on;

  19.     #keepalive_timeout  0;
  20.     keepalive_timeout  65;

  21.     #gzip  on;

  22.     server {
  23.         listen       80;
  24.         server_name  localhost;

  25.         #charset koi8-r;

  26.         #access_log  logs/host.access.log  main;

  27.         location / {
  28.             root   html;
  29.             index  index.html index.htm;
  30.         }

  31.         #error_page  404              /404.html;

  32.         # redirect server error pages to the static page /50x.html
  33.         #
  34.         error_page   500 502 503 504  /50x.html;
  35.         location = /50x.html {
  36.             root   html;
  37.         }

  38.         # proxy the PHP scripts to Apache listening on 127.0.0.1:80
  39.         #
  40.         #location ~ \.php$ {
  41.         #    proxy_pass   http://127.0.0.1;
  42.         #}

  43.         # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
  44.         #
  45.         #location ~ \.php$ {
  46.         #    root           html;
  47.         #    fastcgi_pass   127.0.0.1:9000;
  48.         #    fastcgi_index  index.php;
  49.         #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
  50.         #    include        fastcgi_params;
  51.         #}

  52.         # deny access to .htaccess files, if Apache's document root
  53.         # concurs with nginx's one
  54.         #
  55.         #location ~ /\.ht {
  56.         #    deny  all;
  57.         #}
  58.     }


  59.     # another virtual host using mix of IP-, name-, and port-based configuration
  60.     #
  61.     #server {
  62.     #    listen       8000;
  63.     #    listen       somename:8080;
  64.     #    server_name  somename  alias  another.alias;

  65.     #    location / {
  66.     #        root   html;
  67.     #        index  index.html index.htm;
  68.     #    }
  69.     #}


  70.     # HTTPS server
  71.     #
  72.     #server {
  73.     #    listen       443 ssl;
  74.     #    server_name  localhost;

  75.     #    ssl_certificate      cert.pem;
  76.     #    ssl_certificate_key  cert.key;

  77.     #    ssl_session_cache    shared:SSL:1m;
  78.     #    ssl_session_timeout  5m;

  79.     #    ssl_ciphers  HIGH:!aNULL:!MD5;
  80.     #    ssl_prefer_server_ciphers  on;

  81.     #    location / {
  82.     #        root   html;
  83.     #        index  index.html index.htm;
  84.     #    }
  85.     #}
  86.     include servers/*;
  87. }
复制代码
把server下的这段#号去掉并修改即可,将 PHP 脚本传递给在 127.0.0.1:9000 上侦听的 FastCGI 服务器
  1.         # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
  2.         #
  3.         location ~ \.php$ {
  4.             fastcgi_pass   127.0.0.1:9000;
  5.             fastcgi_index  index.php;
  6.             fastcgi_param SCRIPT_FILENAME  $document_root$fastcgi_script_name;
  7.             include        fastcgi_params;
  8.         }
复制代码
访问 localhost
参数参考:
  1. fastcgi_param  SCRIPT_FILENAME    $document_root$fastcgi_script_name;#脚本文件请求的路径
  2. fastcgi_param  QUERY_STRING       $query_string; #请求的参数;如?app=123
  3. fastcgi_param  REQUEST_METHOD     $request_method; #请求的动作(GET,POST)
  4. fastcgi_param  CONTENT_TYPE       $content_type; #请求头中的Content-Type字段
  5. fastcgi_param  CONTENT_LENGTH     $content_length; #请求头中的Content-length字段。

  6. fastcgi_param  SCRIPT_NAME        $fastcgi_script_name; #脚本名称
  7. fastcgi_param  REQUEST_URI        $request_uri; #请求的地址不带参数
  8. fastcgi_param  DOCUMENT_URI       $document_uri; #与$uri相同。
  9. fastcgi_param  DOCUMENT_ROOT      $document_root; #网站的根目录。在server配置中root指令中指定的值
  10. fastcgi_param  SERVER_PROTOCOL    $server_protocol; #请求使用的协议,通常是HTTP/1.0或HTTP/1.1。  

  11. fastcgi_param  GATEWAY_INTERFACE  CGI/1.1;#cgi 版本
  12. fastcgi_param  SERVER_SOFTWARE    nginx/$nginx_version;#nginx 版本号,可修改、隐藏

  13. fastcgi_param  REMOTE_ADDR        $remote_addr; #客户端IP
  14. fastcgi_param  REMOTE_PORT        $remote_port; #客户端端口
  15. fastcgi_param  SERVER_ADDR        $server_addr; #服务器IP地址
  16. fastcgi_param  SERVER_PORT        $server_port; #服务器端口
  17. fastcgi_param  SERVER_NAME        $server_name; #服务器名,域名在server配置中指定的server_name
复制代码
配置多个服务:

nginx.conf文件有一行
  1. include servers/*;
复制代码
代表会读取servers文件夹下的所有配置文件,没有可以自己加上,并创建文件夹,servers文件夹下创建一个站点配置文件site1.conf。
  1. server {
  2.     listen       80;#端口
  3.     server_name  site1.com;#你的站点域名/ip
  4.     root         /data/site1/public; #你的站点目录,绝对路径即可
  5.     index index.php index.html index.htm;

  6.     #charset koi8-r;
  7.     #access_log  logs/host.access.log  main;
  8.     location / {
  9.         try_files $uri $uri/ /index.php?$query_string;
  10.     }
  11.     error_page   500 502 503 504  /50x.html;
  12.     location = /50x.html {
  13.         root   html;
  14.     }
  15.     location ~ \.php$ {
  16.         fastcgi_pass   127.0.0.1:9000;
  17.         fastcgi_index  index.php;
  18.         fastcgi_param SCRIPT_FILENAME  $document_root$fastcgi_script_name;
  19.         include        fastcgi_params;
  20.     }
  21. }
复制代码
总结

到此这篇关于nginx简单配置多个php服务的文章就介绍到这了,更多相关nginx配置php服务内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

来源:https://www.jb51.net/article/272736.htm
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

举报 回复 使用道具