引言:网上所有关于swagger搭建的教程都是基于Node,步骤繁琐,容易失败。而且Node作为服务器,占用资源比Nginx多很多倍,速度不如nginx。因此尝试了用nginx去搭建swagger,十分简单,以Ubuntu为例。
安装nginx
yangbt@Ubuntu:~$sudo apt-get install nginx
下载swagger editor:https://github.com/swagger-api/swagger-editor
下载swagger ui: https://github.com/swagger-api/swagger-uinginx的html目录默认在/usr/share/nginx/html
将swagger-editor拷贝到html目录 将swagger-ui下的dist目录拷贝到html目录好了,可以分别通过http://localhost/swagger-editor和http://localhost/swagger-ui访问了。
是不是很简单