1.准备工具

  • 一双勤劳的手(bushi
  • 一个Windows电脑(windows10 or windows11)
  • 一个灵活的脑子(bushi
  • 一个代理(梯子),可有可无,有最好

2.闲话

现在已经有很多一键部署的面板和容器,可以面配置直接使用,比如宝塔啊,小皮面板,phpts啥的,挺多的,但我爱追求自己手动,相信也有某些人小白也有着抱着试一试的心理,所有我写了这篇文章,我爱那种部署环境成功的成就感!

3.配置Nginx

前往官网下载最新版Nginx

点击前往下载页面 nginx: download

点击进入 nginx/Windows-1.27.1 ,然后就可以下载啦,当然也可以使用Stable version(稳定版本)的

现在找个自己喜欢的目录解压刚才下载的Nginx,很好,你已经完成了第一步,当然,剩下很多步还要走。

解压后就是这样的,然后进入conf目录,找到nginx.conf进行编辑


#user  nobody;
worker_processes  1;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events {
    worker_connections  1024;
}


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

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

    #access_log  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;

    server {
        listen       80;           # 这里修改端口号
        server_name  localhost;    # 这里修改域名

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root   D:/Web/WEB-HTTP-DEV/nginx/html;  # 指定请求的根目录
            # 修改root这里的路径,建议将路径中的“\”使用 “/” 这个符号
            index  index.html index.htm index.php;  # 这里添加"index.php"
        }

        #error_page  404              /404.html;

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

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

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        location ~ \.php$ {
            root           D:/Web/WEB-HTTP-DEV/nginx/html;    
            # 修改root这里的路径,建议将路径中的“\”使用 “/” 这个符号
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
            # fastcgi_param 后面的换成 SCRIPT_FILENAME  $document_root$fastcgi_script_name;
            # 我忘了原来是啥了
            include        fastcgi_params;
        }

        # 将粉色区域的注释删掉
       
        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #location ~ /\.ht {
        #    deny  all;
        #}
    }


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

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}


    # HTTPS server
    #
    #server {
    #    listen       443 ssl;
    #    server_name  localhost;

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

    #    ssl_session_cache    shared:SSL:1m;
    #    ssl_session_timeout  5m;

    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers  on;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}

}

OK,这样就完成了Nginx的配置

4.配置PHP

下载PHP8.3,前往PHP: Hypertext Preprocessor

点击下载这个Windows downloads

还是找个自己喜欢的目录解压刚才下载的Nginx,很好,你已经完成了第不知道第几步,当然,剩下很多步还要走。

解压后进入PHP的目录

将目录下的php.ini-development复制备份一下,然后重命名为php.ini,然后编辑php.ini

将 ;cgi.fix_pathinfo=1 改成 cgi.fix_pathinfo=1

将 ;extension_dir = "ext" 改成 extension_dir = "ext"

将 ;extension=fileinfo 改成 extension=fileinfo

将 ;extension=mysqli 改成 extension=mysqli # 打开MySQLli扩展

我只讲了关键配置,其他的可以自行Bing php.ini配置,保存后,我们开始运行

在CMD中打开对应 Nginx 和 PHP 的目录,PHP目录下执行"php-cgi -b 127.0.0.1 -c ./php.ini",如果不报错就成功启动了,Nginx目录下执行"nginx"命令运行Nginx

在Ngixn目录下的html目录里面创建phpinfo.php,添加以下代码

<?php
echo phpinfo();
?>

保存后在浏览器访问loaclhost/info.php

出现这个页面成功了,如果没成功,出现了an error occurred.,检查一下哪一步出了错,我遇到过很多这种清错误i情况,我第一次配置成功就写了这篇文章,如果出现问题我也不能明确是什么问题

飞萤扑火,向死而生
最后更新于 2024-10-01