🙈🙈🙈 公司的Nacos加载静态资源太慢了, 每次打开后台界面都得1-2分钟,然后也改变不了别人,也说服不了别人上Nginx缓存静态文件,只能改变自己了。 自己使用Nginx代理..
安装 & 启动
- brew install nginx
brew services start nginx
补充配置文件
server {listen 80;server_name c.nacos.com; location ~ \.(html|eot|ttf|woff|woff2|css|js|gif|jpg|jpeg|png)$ { root /Users/chenshun/Desktop/nacos/target/ff/BOOT-INF/classes/static; }location / { proxy_pass http://10.49.2.162:8848/;}}