您尚未登录。

#1 2015-03-21 19:26:12

roadgo
会员
注册时间: 2012-04-07
帖子: 380

摆脱127.0.0.1 的影响 (我的 owncloud云盘之路三)

#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的欢迎页。
我在加入过程中,忽略了一个“}”,浪费了我一天的时间。

离线

#2 2015-04-08 14:45:47

wuqi
会员
注册时间: 2015-04-08
帖子: 1

Re: 摆脱127.0.0.1 的影响 (我的 owncloud云盘之路三)

用的seafile,貌似还不错,配置也还比较简单...

离线

页脚