-
Notifications
You must be signed in to change notification settings - Fork 1.6k
v3 Install
David Lin edited this page Jan 18, 2017
·
12 revisions
请在下载页面查看最新版本 https://github.com/orvice/ss-panel/releases
这里以ss-panel下载至/home/www/ss-panel目录为例
cd /home/www
git clone https://github.com/orvice/ss-panel.git
VirtualHost配置中增加
<Directory /home/www/ss-panel/public>
AllowOverride All
Order Deny,Allow
Allow from all
</Directory>
并且需要开启mod_rewrite
模块。
root /home/www/ss-panel/public;
location / {
try_files $uri $uri/ /index.php$is_args$args;
}
cd /home/www/ss-panel
curl -sS https://getcomposer.org/installer | php
php composer.phar install
如果出现错误,请按照错误信息安装相应的php模块,然后再执行 php composer.phar install