14-1
设置服务器禁止密码登陆,
passwordAuthentication去掉#注释,yes改成no。
14-3
cooding创建项目
克隆本地
add到github
添加,commit
这样cooding.net上也有了。
服务器,生成rsa
ssh-keygen -C 名字
然后添加到cooding.net
git pull
service supervisor restart
写在 deploy.sh
sh deploy.sh 就可以了。
今天在服务器上git pull是出现以下错误:
error: Your local changes to the following files would be overwritten by merge:
application/config/config.php
application/controllers/home.php
Please, commit your changes or stash them before you can merge.
Aborting
不知道什么原因造成的代码冲突,处理方法如下:
如果希望保留生产服务器上所做的改动,仅仅并入新配置项:
git stash
git pull
git stash pop
然后可以使用git diff -w +文件名 来确认代码自动合并的情况.
如果希望用代码库中的文件完全覆盖本地工作版本. 方法如下:
git reset --hard
git pull
部署
wsgi文件
➜ ~ cat /etc/supervisor/conf.d/test.conf
[program:test]
command=/usr/local/bin/gunicorn wsgi --bind 0.0.0.0:80 --pid /tmp/todo.pid
directory=/root/tmp/test
autostart=true
安装 gunicorn
输入gunicorn wsgi -- bind 0.0.0.0:80
service supervisor restart
supervisorctl restart test
test是你程序的名字