[Nginx] (참고) Tomcat을 위한 Conf 파일 예제

HardCarry·2022년 8월 16일
0

Docker

목록 보기
11/16

도커에서 사용한 nginx conf 파일 예제 입니다.

파일 위치 :
/etc/nginx/nginx.conf
/etc/nginx/conf/default.conf

파일이 2개 인 이유 :

  • 가독성을 위해서 나눔.
  • nginx.conf 파일 중 include로 default.conf 파일을 불러옴.
  • default.conf 에서 http 서버 셋팅이 나옴

/etc/nginx/nginx.conf

user  nginx;
worker_processes  1;

error_log  /var/log/nginx/error.log warn;
pid        /var/run/nginx.pid;


events {
    worker_connections  1024;
}


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

    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;

    keepalive_timeout  65;

    #gzip  on;

    include /etc/nginx/conf/default.conf;
}

/etc/nginx/conf/default.conf

server {
		listen 80 default_server;
                listen [::]:80 default_server;
		server_name _;
		
		root /usr/share/nginx/html;
		
		error_page 404 /404.html;
			location = /40x.html {
		}
		error_page 500 502 503 504 /50x.html;
			location = /50x.html {
		}

		location ~* \.(?:jpg|jpeg|gif|png|ico|cur|gz|svg|svgz|mp4|ogg|ogv|webm|htc|apk|woff|woff2|ttf|map|mp3|eot|cfg|kr)$ {
			expires 1M;
			access_log off;
			add_header Cache-Control "public";
		}	 
	
		location ~* \.(?:css|js|html)$ {
					expires 1y;
					access_log off;
					add_header Cache-Control "public";
		}

		location / {
                proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
                proxy_set_header Host $http_host;
                proxy_set_header X-Real-IP $remote_addr;
			proxy_pass http://172.17.0.5:8080; 
			#root .\\smartfarm\\html\\webapp\\renewal;
			#index .\\renewal\\main.html;
		}
		
		location ~ \.jsp$ {
			proxy_pass http://172.17.0.5:8080;
			proxy_set_header X-Real-IP $remote_addr;
			proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
			proxy_set_header Host $http_host;
		}
		
	
	}
profile
안녕하세요, 하드캐리입니다

0개의 댓글