服务器部署
soilerl
代码改变世界
展开
-
centos 使用nginx+uwsgi部署django
1、首先使用yum命令安装nginxyum install nginx2、pip install uwsgi 安装uwsgi这里要说明一下,nginx负责调用静态资源,如css等,而uwsgi负责动态服务器的调用,如果不安装nginx,直接使用uwsgi是可以访问网站的,但是无法加载css样式3、安装好之后可以新建一个test文件进行测试,如下图,网址是https://uwsgi....原创 2020-03-11 18:13:24 · 270 阅读 · 0 评论 -
在Ubuntu上使用nginx部署vue
第一步:安装nginxhttps://www.cnblogs.com/aaronthon/p/9945993.html第二步:启动nginx,浏览器输入localhost查看是否部署成功sudo systemctl start nginx.service #开启服务sudo systemctk enable nginx.service #跟随系统启动服务浏览器输入网址查看...原创 2020-02-18 23:02:16 · 1439 阅读 · 0 评论