如何搭建自己的Web服务器(一)
的有关信息介绍如下:今天小编通过nginx搭建了自己的web服务器,并成功将自己的项目发送到了外网上。下面就给大家分享一些经验心得:
以管理员权限运行PowerShell,如图所示。
安装chocolatey:
在power shell中执行:
Set-ExecutionPolicyAllSigned;iex((New-ObjectSystem.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
其中遇到两个提问:
是否要更改执行策略?选:A
是否要运行来自此不可信发布者的软件?选:A
安装nginx
在power shell 中输入:choco install nginx -y
打开nginx/tools文件夹:
在power shell 中输入:explorer C:\ProgramData\chocolatey\lib\nginx\tools
在文件夹内: 打开nginx-1.12.1 --打开conf文件夹--用非记事本的编辑器(没有的话,chocoinstallnotepadplusplus )打开nginx.conf 文件
在nginx-1.12.1文件夹下,找到html文件夹,并重命名为html_
在pawer shell里面输入:
cdC:\ProgramData\chocolatey\lib\nginx\tools
再输入:
chocoinstallpstools
Do you want to run the script?([Y]es/[N]o/[P]rint): Y
powershell里面执行:cdC:\ProgramData\chocolatey\lib\nginx\tools\nginx-1.12.1cmd/cmklink/dhtml 项目的绝对路径
power shell里执行:
cd ..
nginx
power shell里执行:
cdnginx-1.12.1nginx
在弹出的网络防火墙页面 两个框都打勾,允许访问。
最后试试访问localhost:80、试试访问你的ngrok。
到这里,我们的web服务器已经顺利搭建完毕,并成功添加了我们的项目在服务器上。
附1:在桌面建立个后辍为bat的文件,内容为:
cdC:\ProgramData\chocolatey\lib\nginx\tools\nginx-1.12.1nginx
注:
关闭这个窗口服务器就停止运行 ;
打开bat就运行。
附2:改项目的话,cmd 以管理员身份运行
cdC:\ProgramData\chocolatey\lib\nginx\tools\nginx-1.12.1del/f/qhtmlmklink/dhtml项目绝对位置
今天就给大家介绍这些,谢谢大家的支持!