修改nginx.conf文件,删除一下内容,配置默认虚拟主机: 创建虚拟主机配置目录

mkdir /etc/nginx/vhost``

server { listen 80; server_name localhost; index index.html index.htm index.php; root /data/www; location ~ .php$ { include fastcgi_params; fastcgi_pass unix:/tmp/php-fcgi.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME /data/www$fastcgi_script_name; }
}

增加

 include vhost/*.conf

修改后的nginx配置文件内容

user nginx nginx;
worker_processes 2;
error_log /var/log/nginx/error.log crit;
pid /var/run/nginx.pid;
worker_rlimit_nofile 51200;
events
{
    use epoll;
    worker_connections 6000;
}
http
{
    include mime.types;
    default_type application/octet-stream;
    server_names_hash_bucket_size 3526;
    server_names_hash_max_size 4096;
    log_format combined_realip '$remote_addr $http_x_forwarded_for [$time_local]'
    ' $host "$request_uri" $status'
    ' "$http_referer" "$http_user_agent"';
    sendfile on;
    tcp_nopush on;
    keepalive_timeout 30;
    client_header_timeout 3m;
    client_body_timeout 3m;
    send_timeout 3m;
    connection_pool_size 256;
    client_header_buffer_size 1k;
    large_client_header_buffers 8 4k;
    request_pool_size 4k;
    output_buffers 4 32k;
    postpone_output 1460;
    client_max_body_size 10m;
    client_body_buffer_size 256k;
    client_body_temp_path /tmp/nginx/client_body;
    proxy_temp_path /tmp/nginx/proxy;
    fastcgi_temp_path /tmp/nginx/fastcgi;
    fastcgi_intercept_errors on;
    tcp_nodelay on;
    gzip on;
    gzip_min_length 1k;
    gzip_buffers 4 8k;
    gzip_comp_level 5;
    gzip_http_version 1.1;
    gzip_types text/plain application/x-javascript text/css text/htm 
    application/xml;
    include vhost/*.conf;
}
vim /etc/nginx/vhost/default.conf

server
{
listen 80;
server_name oceanwing.com;
index index.html index.htm index.php;
root /data/www/default;
location ~ \.php$ 
	{
include fastcgi_params;
fastcgi_pass unix:/tmp/php-fcgi.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /data/www/default$fastcgi_script_name;
	}
}


nginx -t   #检查配置文件是否正确
nginx -s reload  #重加载nginx配置


mkdir -p /data/www/default/

mv /data/www/*.php /data/www/default
 curl -x 127.0.0.1:80 oceanwing.com

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/tr/html4/loose.dtd"> <html> <head> <title>LNMP</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="author" content="Gavin Zhao"> <meta name="keywords" content="Centos7服务器"> <meta name="description" content=""> <link rel="shortcut icon" href="favicon.ico" type="image/ico"> <style type="text/css"> <!-- .links {color: #009900} .STYLE1 {font-weight: bold} --> </style> </head> <body> <br> <br> <center> <strong>恭喜,lnmp 已安装成功!</strong><br> <br> <p><span class="STYLE1">查看服务器WEB环境:</span><a rel="nofollow" href="/iProber2.php" target="_blank" class="links">探针信息</a> <a rel="nofollow" href="/phpinfo.php" target="_blank" class="links">phpinfo信息</a></p> <p>为安全起见,本页可删除或重命名</p> </center> </body> </html>

添加虚拟主机代理:

1、confluence代理 80端口代理confluence的8090 vim /etc/ng``inx/vhost/itks.oceanwing.com.conf

server { server_name itks.oceanwing.com listen 80;

location / { proxy_pass http://172.16.20.247:8090/; proxy_set_header Host $host:80; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; } }

2、Jenkins代理


vim /etc/nginx/vhost/jenkins.oceanwing.com.conf

server {
  server_name jenkins.oceanwing.com
  listen 80;

  location / {
    proxy_pass http://172.16.22.245:8080;
    proxy_set_header Host $host:80;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  }
}

3、jira的代理

vim /etc/nginx/vhost/jira.oceanwing.com.conf
server {
  server_name jira.oceanwing.com
  listen 80;

  location / {
    proxy_pass http://172.16.20.247:8080/;
    proxy_set_header Host $host:80;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  }
}