luoxupan / wiki

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Page链接:


VPS网址


Mac启动自带服务器实现本地访问

  • sudo apachectl start
  • sudo apachectl restart
  • sudo apachectl stop
  • 修改服务器默认配置
    • sudo vim /etc/apache2/httpd.conf
    • <Directory "/Library/WebServer/Documents">修改成<Directory "/Users/luoxupan">
  • 浏览器输入http://localhost/wiki/pages/page06/index.html

Mac启动Nginx服务器实现本地访问

  • nginx -t 查看nginx.conf配置文件路径
  • 修改nginx.conf资源根路径
    location / {
      root /Users/luoxupan;
      index  index.html index.htm;
    }
    

image

image

image

About


Languages

Language:JavaScript 97.4%Language:HTML 2.3%Language:TypeScript 0.3%Language:Shell 0.0%