jojoldu / freelec-springboot2-webservice

1.07k stars 462 forks source link

[질문] p.377 Nginx 질문 #329

Open rkaehdaos opened 4 years ago

rkaehdaos commented 4 years ago

설명:

p377 에서 nginx.conf를 수정하는 부분이 있는데 책으로만 보았을때 기본 conf안에 location 부분이 있어서 그부분에 책내용을 추가하면 되는 것으로 알았는데 nginx버전이 틀려서 그런지 저 부분을 찾을 수 없네요 Nginx 1.14 버전이며 설치시 디폴트 nginx.conf 파일 내용입니다

ubuntu@aws-ubuntu18:~$ sudo cat /etc/nginx/nginx.conf 
user www-data;
worker_processes auto;
pid /run/nginx.pid;
include /etc/nginx/modules-enabled/*.conf;

events {
    worker_connections 768;
    # multi_accept on;
}

http {

    ##
    # Basic Settings
    ##

    sendfile on;
    tcp_nopush on;
    tcp_nodelay on;
    keepalive_timeout 65;
    types_hash_max_size 2048;
    # server_tokens off;

    # server_names_hash_bucket_size 64;
    # server_name_in_redirect off;

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

    ##
    # SSL Settings
    ##

    ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
    ssl_prefer_server_ciphers on;

    ##
    # Logging Settings
    ##

    access_log /var/log/nginx/access.log;
    error_log /var/log/nginx/error.log;

    ##
    # Gzip Settings
    ##

    gzip on;

    # gzip_vary on;
    # gzip_proxied any;
    # gzip_comp_level 6;
    # gzip_buffers 16 8k;
    # gzip_http_version 1.1;
    # gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;

    ##
    # Virtual Host Configs
    ##

    include /etc/nginx/conf.d/*.conf;
    include /etc/nginx/sites-enabled/*;
}

#mail {
#   # See sample authentication script at:
#   # http://wiki.nginx.org/ImapAuthenticateWithApachePhpScript
# 
#   # auth_http localhost/auth.php;
#   # pop3_capabilities "TOP" "USER";
#   # imap_capabilities "IMAP4rev1" "UIDPLUS";
# 
#   server {
#       listen     localhost:110;
#       protocol   pop3;
#       proxy      on;
#   }
# 
#   server {
#       listen     localhost:143;
#       protocol   imap;
#       proxy      on;
#   }
#}
ubuntu@aws-ubuntu18:~$ 

지금까지 잘 따라왔는데 이부분에서 막히네요

apinkpanda722 commented 4 years ago

저는 지금 nginx 1.16.1쓰고 있는데 책이랑 거의 비슷합니다. 버전을 업글하시는게 좋을것 같네요