http-server:如何设置我的服务器的根目录?

时间:2015-06-07 14:35:02

标签: node.js makefile httpserver

我通过节点http-server module运行服务器。麻烦的是,它显示工作目录/document/js/

# /document/js/server.makefile
node ../node_modules/.bin/forever ../node_modules/.bin/http-server --cors &
# localhost:8080 shows content of /document/js/

我实际上希望我的服务器显示/document的内容。

如何设置我的服务器的根文件夹(/document/js/server.makefile),以便localhost:8080显示/document/的内容?

1 个答案:

答案 0 :(得分:0)

http服务器文档usage指出,您可以在选项之前输入路径。因此,在您的情况下,您可能想尝试类似的方法:

hs /document [your_options]

添加-o,以在启动服务器后打开浏览器。