一个基于laravel5.3最佳实践的cms程序,使用众多现代web开发特性。
香港1M带宽
- 全文搜索
- 权限管理
- 云平台友好
- 非常多精致优雅的小细节
- PHP5.5及以上,推荐使用PHP7.1
- nginx或其他Web Server,root目录绑定到public文件夹并设置伪静态到index.php
- MySQL或兼容MySQL的其他数据库,推荐MySQL5.7
- redis 缓存服务器
- spinx 搜索引擎(可选)
!!!如果你在安装过程中遇到任何问题,请不要犹豫,立即提出Issue。我会全力帮助你!!!
git clone [email protected]:shellus/shcms.git
cd shcms
chmod -R 777 storage public/uploads
composer install
bower install
cp .env.example .env
编辑.env
文件:
-
修改数据库连接信息
DB_*
-
设置网站名称和副标题
APP_NAME, APP_SUB_NAME
-
声明是否已经开启SSL
ENABLE_SSL
(这将在非HTTPS访问时警告用户使用HTTPS安全浏览) -
修改
APP_ENV
为你的运行环境代号
php artisan key:generate
php artisan migrate
php artisan db:seed
php vendor/bin/phpunit
php artisan config:cache
php artisan route:cache
php artisan optimize
如果你需要支持文章阅读时长统计,那么你需要运行 php artisan ws
这将使用8080端口, 你可以使用 supervisor
来运行它
sudo apt install -y supervisor
sudo vim /etc/supervisor/conf.d/ws.conf
ws.conf 推荐配置
[program:ws]
command=php artisan ws
user=www-data
directory=path/to/shcms/
然后使新的配置生效
sudo service supervisor restart
如果websocket
运行不稳定,那么你可以使用cron
在每天凌晨使用 sudo supervisorctl restart ws
重启它
如果你部署SSL访问,那么需要对websocket做反向代理来实现wws://协议
nginx.conf:
upstream shcms.endaosi.com {
server 127.0.0.1:8080;
}
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
server {
listen 80;
listen 443 ssl;
server_name shcms.endaosi.com;
location ^~ /websocket {
proxy_pass http://shcms.endaosi.com;
proxy_redirect off;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
编辑.env
文件,修改数据库连接信息
php artisan key:generate
php artisan migrate
php artisan db:seed
bower install
参见Issue列表
有任何问题和疑问请在github建立Issue,我会尽快回复您
欢迎您使用、学习、参与本项目。