mirror of https://github.com/helloxz/imgurl.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
453 B
11 lines
453 B
<?php |
|
$config = array( |
|
'domain' => 'http://localhost/imgurl/', //网站域名 |
|
'watermark' => 'false', //文字水印 |
|
'userdir' => 'temp', //访客上传目录,一般保持默认 |
|
'admindir' => 'upload', //管理员上传目录,一般保持默认 |
|
'username' => 'xiaoz', //管理员账号 |
|
'password' => 'xiaoz.me', //管理员密码 |
|
'tinypng' => '' //使用TinyPNG压缩图片,填写TinyPNG KEY,为空则不启用压缩 |
|
); |
|
?>
|