nginx 는 다양한 언어 프레임 워 크 의 웹 서버 를 설정 합 니 다.

3202 단어 사소한 문제web
최근 에 go 웹 개발 을 공부 하려 면 온라인 으로 접근 할 수 있 는 환경 을 구축 해 야 합 니 다. 마침 전에 digitalocean 에서 클 라 우 드 호스트 를 빌 렸 고 그 위 에 워드 프레스 블 로그 시스템 을 설 치 했 습 니 다. 지금도 두 개의 도 메 인 이 있 습 니 다. 그래서 그 클 라 우 드 호스트 에 두 개의 서로 다른 도 메 인 웹 서버 를 설치 하려 고 합 니 다.저 는 nginx 를 프 록 시 로 사용 하기 때문에 여기 서 nginx 설정 파일 만 수정 하면 도 메 인 이름 에 따라 서로 다른 웹 서버 에 전송 을 요청 할 수 있 습 니 다.
WordPress 는 PHP 언어 를 사용 하기 때문에 nginx 는 phop - fpm 감청 포트 에 전송 을 요청 해 야 합 니 다. beego 는 go 언어 를 사용 하기 때문에 nginx 는 beego 가 시작 하 는 웹 서버 의 감청 포트 에 전송 을 요청 해 야 합 니 다.
다음은 nginx 의 구체 적 인 설정 을 보십시오.
# For more information on configuration, see:
#   * Official English Documentation: http://nginx.org/en/docs/
#   * Official Russian Documentation: http://nginx.org/ru/docs/

user nginx; 
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;

# Load dynamic modules. See /usr/share/nginx/README.dynamic.
include /usr/share/nginx/modules/*.conf;

events {
    worker_connections 1024;
}

http {
    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  /var/log/nginx/access.log  main;

    sendfile            on;
    tcp_nopush          on;
    tcp_nodelay         on;
    keepalive_timeout   65;
    types_hash_max_size 2048;
    client_max_body_size 5M;

    include             /etc/nginx/mime.types;
    default_type        application/octet-stream;

    # Load modular configuration files from the /etc/nginx/conf.d directory.
    # See http://nginx.org/en/docs/ngx_core_module.html#include
    # for more information.
    include /etc/nginx/conf.d/*.conf;
    
    #   WordPress
    server {
        # nginx   80  
        listen       80; 
        listen       [::]:80;  
        #      abc.com
        server_name  abc.com;  
        #         
        root         /var/www/html;
	index index.html index.htm index.php;

        # Load configuration files for the default server block.
        include /etc/nginx/default.d/*.conf;

        location / {
        }

	location ~ .php$ {
                #         ,php-fpm   9000  
		fastcgi_pass 127.0.0.1:9000;
		fastcgi_index index.php;
		fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
		include fastcgi_params;
	}

        error_page 404 /404.html;
            location = /40x.html {
        }

        error_page 500 502 503 504 /50x.html;
            location = /50x.html {
        }
    }
    #   go web
    server {
        # nginx   80  
	listen       80; 
        #      xyz.com
	server_name  xyz.com; 
	charset utf-8;
        #           
	access_log  /root/log/xyz.com.access.log;
	#        
        root /root/go/src/xyz/;
	 	

	location /(css|js|fonts|img)/ {
            access_log off;
	    expires 1d;

	    try_files $uri @backend;
	}

	location / {
	    try_files /_not_exists_ @backend;
	}

	location @backend {
	    proxy_set_header X-Forwarded-For $remote_addr;
	    proxy_set_header Host            $http_host;
            #         ,go web   8080  
	    proxy_pass http://127.0.0.1:8080;
	}
    }
}

좋은 웹페이지 즐겨찾기