页次: 1
#leafpad /home/qwer/owncloud/config/config.php
找到这个
'trusted_domains' =>
array (
'127.0.0.1',
'zzd.org',
'192.168.1.8',
),
去掉 '127.0.0.1',这一行
“zzd.org“指浏览器中输入的域名(也可以你自己定义)
配置第二个虚拟站点
#leafpad /etc/nginx/nginx.conf
加入
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
}
浏览器中输入http:127.0.0.1
会出来nginx的欢迎页。
我在加入过程中,忽略了一个“}”,浪费了我一天的时间。
离线
用的seafile,貌似还不错,配置也还比较简单...
离线
页次: 1