forked from orvice/ss-panel
-
Notifications
You must be signed in to change notification settings - Fork 0
v3 Install
hahamix edited this page Jul 16, 2016
·
11 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