项目作者: m2nlight

项目描述 :
A simple static file http server
高级语言: Go
项目地址: git://github.com/m2nlight/simplehttpserver.git
创建时间: 2019-05-13T13:53:48Z
项目社区:https://github.com/m2nlight/simplehttpserver

开源协议:MIT License

下载


simplehttpserver

A simple static file http server

Features

  • Supports multiple paths mapping
  • Supports angular router
  • Supports custom index files
  • Supports TLS (HTTPS)
  • Supports basic authorize
  • Supports compress
  • Supports log file and colorful output
  • Supports upload files

Run

Simple to run

Current file path mapping to web root, default port is 8080.

  1. ./simplehttpserver

Browse http://localhost:8080

Supports angular router

The dist path mapping to web root, port to 4200, index file is index.html and supports fallback to index.html

  1. ./simplehttpserver -addr :4200 -path dist -indexnames index.html -fallback index.html

Supports TLS

First, you can use mkcert to create the cert-files for develop.

  1. mkcert -install
  2. mkcert -cert-file ssl-cert.pem -key-file ssl-cert.key localhost 127.0.0.1 ::1

Then run command

  1. ./simplehttpserver -addrtls :8081 -certfile ssl-cert.pem -keyfile ssl-cert.key -username admin -password admin -logfile 1.log

Browse https://localhost:8081

Configuration file

  1. Make a config file

    1. ./simplehttpserver -makeconfig config.yaml
  2. Edit config.yaml

    You can add multiple paths in the config file.

    Line starts with # is a comment line.

    1. addr: 0.0.0.0:8080
    2. #addrtls: 0.0.0.0:8081
    3. #certfile: ./ssl-cert.pem
    4. #keyfile: ./ssl-cert.key
    5. #username: admin
    6. #password: admin
    7. compress: false
    8. paths:
    9. #/c: "C:\\"
    10. #/d: "D:\\"
    11. indexnames:
    12. - index.html
    13. - index.htm
    14. verbose: true
    15. enablecolor: true
    16. enableupload: true
    17. ## maxrequestbodysize 0 to default size
    18. maxrequestbodysize: 9223372036854775807
    19. ## timeout 0s is no limit
    20. readtimeout: 0s
    21. writetimeout: 0s
    22. logfile: ./simplehttpserver.log
    23. #fallback: ./index.html
    24. #HTTP_PROXY:
    25. #HTTPS_PROXY:
    26. #NO_PROXY: ::1,127.0.0.1,localhost
  3. Run with the config file

    1. ./simplehttpserver -config config.yaml

Get help

  1. ./simplehttpserver -help

Build

  1. bash ./build.sh

Thanks

Powered by