我是沙发基地的新手。我使用 Web 控制台创建新的 Couchbase 存储桶,分配的 RAM = 100 MB(仅用于测试)。我不明白的是:这个新桶有 40MB 正在使用中。它有什么用?谁能给我解释一下?非常感谢
主页
/
user-122851
Summer Nguyen's questions
Summer Nguyen
Asked:
2012-07-12 07:59:59 +0800 CST
我有一台带有 nginx 1.2.1 的服务器 Ubuntu 11.10 假设我的域是:domain.com Nginx 作为反向代理:redmine.domain.com => 指向 webrick redmine 端口 3000 svn.domain.com => 指向apache2 端口 8080 domain.com、www.domain.com 和所有域(等:abc.com、def.com、ghi.com)=> php-fastcgi 端口 9000
您可能想知道为什么我必须接受所有域(abc.com、def.com、ghi.com),是的,这是我们的服务,允许客户在我们的 Multi-Tanency 应用程序中使用他们的域。
但问题是:当我使用 abc.com(在我的笔记本电脑上的文件主机上添加一条记录)访问我的服务器时,nginx 将请求重定向到我们的 redmine。我希望 nginx 像配置一样重定向到 php-fastcgi。
这是我在 Nginx 上的配置:(/etc/nginx/sites-enabled/)
红矿
server {
listen 80;
server_name redmine.sieuthimoi.vn;
access_log /var/log/nginx/access.log;
location / {
auth_basic "Not Allow Here";
auth_basic_user_file /etc/nginx/htpasswd;
proxy_pass http://127.0.0.1:3000;
include /etc/nginx/proxy.conf;
}
}
和PHP-FastCgi
server {
#listen 80; ## listen for ipv4; this line is default and implied
#listen [::]:80 default_server ipv6only=on; ## listen for ipv6
root /usr/share/nginx/www/site;
index index.php index.htm index.html;
# Make site accessible from http://localhost/
server_name domain.com _;
location ~ .php$ {
try_files $uri /index.php
index index.php;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /usr/share/nginx/www/site$fastcgi_script_name;
include fastcgi_params;
}
}
请注意:domain.com 完美运行。
任何人都请帮助我。非常感谢