更改webpy中的静态目录路径
我希望能够更改 webpy 静态目录,而无需在本地设置和运行 nginx。现在,如果 /static/ 存在,webpy 似乎只会创建一个静态目录。就我而言,我想使用 /foo/bar/ 作为我的静态目录,但找不到与配置此目录相关的任何信息(除了在本地运行 apache 或 nginx )。
这仅供本地使用,不适用于生产。有什么想法吗?谢谢
I'd love to be able to change the webpy static directory without the need to set up and run nginx locally. Right now, it seems webpy will only create a static directory if /static/ exists. In my case, I want to use /foo/bar/ as my static directory, but couldn't find any info related to configuring this (other than running apache or nginx locally).
This is for local use only, not production. Any ideas? Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您需要为同一路径拥有不同的目录,那么您可以子类化 web.httpserver.StaticMiddleware 或编写自己的中间件,如下所示(它通过修改 PATH_INFO 来欺骗 StaticApp):
或者您可以创建名为“static”的符号链接并将其指向另一个目录。
If you need to have different directory for the same path then you may subclass web.httpserver.StaticMiddleware or write your own middleware like this (it tricks StaticApp by modifying PATH_INFO):
Or you can create symlink named "static" and point it to another directory.