zoukankan      html  css  js  c++  java
  • 使用Python启动一个简单的服务器

    在 Linux 服务器上或安装了 Python 的机器上,Python自带了一个WEB服务器 SimpleHTTPServer,我们可以很简单的使用  python -m SimpleHTTPServer 快速搭建一个http服务,提供一个文件浏览的web服务,而ios自带了 python,windows需要安装python才能使用。

    1,当前目录发布到8001端口(明令后边的8001端口是可选的,不设置的话使用默认端口8000),该服务是前台运行的,control+c会关闭该服务。

    python -m SimpleHTTPServer 8001
    2,进程在后台运行,control+c不会关闭该服务,关闭bash时关闭服务。

    python -m SimpleHTTPServer 8001 &
    3,在命令的开头加一个nohup,忽略所有的挂断信号,如果当前bash关闭,则当前进程会挂载到init进程下,成为其子进程,这样即使退出当前用户,其8000端口也可以使用。

    nohup python -m SimpleHTTPServer 8001 &
    4,在浏览器访问:http://localhost:8001,如果当前文件夹有index.html文件,会默认显示该文件,否则,会以文件列表的形式显示目录下所有文件。

    附送:

     npm start启动本地服务的方法

    复制代码
    // 项目目录执行
    // npm install 安装依赖
    // npm start 启动本地服务
    // npm run build 打包资源到dist
    {
      "name": "test",
      "version": "0.0.1",
      "description": "npm 启动本地服务的package.json配置",
      "main": "index.js",
      "scripts": {
        "start": "http-server ./ -p 8989 -e "" -c -1",
        "clean": "shx rm -rf ./dist && shx mkdir dist",
        "build": "npm run clean && shx cp -r *.html js css ./dist"
      },
      "devDependencies": {
        "http-server": "^0.9.0",
        "shx": "^0.1.4"
      }
    }

    原文链接:http://www.cnblogs.com/weilantiankong/p/6140447.html

  • 相关阅读:
    贪心算法
    分治法
    递归法
    查找二 树与图的搜索
    (转载)查找三 哈希表的查找
    (转载)查找一 线性表的查找
    4.写出完整版的strcpy函数
    3.strcpy使用注意(3)
    2.strcpy使用注意(2)
    1.strcpy使用注意
  • 原文地址:https://www.cnblogs.com/wfwenchao/p/6564669.html
Copyright © 2011-2022 走看看