好的,我已编辑了我的问题:)
我想将所有流量指向运行 Nginx 的专用服务器,并让其处理 70-80% 的负载,同时将流量分配给运行相同源的其他一些 VPS 机器。
我已经生成了我认为可以作为现有服务器块的附加部分的内容:
我可以使用类似的东西来设置专用机器服务器块吗?
upstream my-servers {
ip_hash;
server 127.0.0.1:80 weight=8; #Dedicated
server x.x.x.x:80 weight=2; # VPS1
server x.x.x.x:80 weight=2; # VPS2
server x.x.x.x:80 weight=2; # VPS3
}
location / {
proxy_pass http://my-servers;
etc....
}
像那样指定本地主机是否有效?
这是我当前的工作配置:
server {
listen 80;
root /var/www/vhosts/www.domain.co.uk/;
index index.php;
server_name domain.co.uk www.domain.co.uk;
gzip on;
gzip_static on;
gzip_http_version 1.0;
gzip_disable "MSIE [1-6].";
gzip_vary on;
gzip_comp_level 2;
gzip_proxied any;
gzip_types text/plain text/css application/x-javascript text/xml application/xml application/xml+rss text/javascript;
fastcgi_buffers 8 16k;
fastcgi_buffer_size 32k;
fastcgi_read_timeout 180;
fastcgi_intercept_errors off;
location / {
try_files $uri $uri/ /index.php;
if ($http_host ~* "^domain.co.uk"){
rewrite ^(.*)$ http://www.domain.co.uk$1 redirect;
}
}
location ~ \.php$ {
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_split_path_info ^(.+.php)(.*)$;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
该网站实际上是 PHP,但它是一个为其他网站网页提供服务的代理脚本,仍然没有数据库。