All checks were successful
Deploy Nginx Config to Ubuntu Server / deploy (push) Successful in 1s
124 lines
3.9 KiB
Nginx Configuration File
124 lines
3.9 KiB
Nginx Configuration File
user nginx nginx;
|
|
worker_processes auto;
|
|
pid /run/nginx.pid;
|
|
include /etc/nginx/modules-enabled/*.conf;
|
|
|
|
events {
|
|
worker_connections 1024;
|
|
# multi_accept on;
|
|
}
|
|
|
|
http {
|
|
|
|
##
|
|
# Basic Settings
|
|
##
|
|
sendfile on;
|
|
tcp_nopush on;
|
|
types_hash_max_size 2048;
|
|
# OS의 bit에 따라 배수로 설정
|
|
server_names_hash_bucket_size 64;
|
|
# TODO: 성능에 따라 조정필요
|
|
# ※ client_max_body_size = client_body_buffer_size -> disk에 기록하지 않는다는 가정의 최적의 튜닝
|
|
client_max_body_size 1000M;
|
|
client_body_buffer_size 1000M;
|
|
|
|
# security options
|
|
server_tokens off;
|
|
fastcgi_hide_header X-Powered-By;
|
|
|
|
# enhance
|
|
# connection timeout(재활용) 0 ~ 최대한 짧게
|
|
keepalive_timeout 3;
|
|
|
|
# server_names_hash_bucket_size 64;
|
|
# server_name_in_redirect off;
|
|
|
|
include /etc/nginx/mime.types;
|
|
default_type application/octet-stream;
|
|
|
|
##
|
|
# Real IP from reverse proxies
|
|
##
|
|
set_real_ip_from 127.0.0.1;
|
|
set_real_ip_from 10.0.0.0/8;
|
|
set_real_ip_from 172.16.0.0/12;
|
|
set_real_ip_from 192.168.0.0/16;
|
|
real_ip_header X-Forwarded-For;
|
|
real_ip_recursive on;
|
|
|
|
##
|
|
# SSL Settings
|
|
##
|
|
|
|
# Restrict to modern TLS to avoid handshake issues
|
|
ssl_protocols TLSv1.2 TLSv1.3; # Drop TLSv1.0/1.1
|
|
ssl_prefer_server_ciphers on;
|
|
# Harden cipher suite and ECDH curves (mitigate bad key share)
|
|
ssl_ciphers 'ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305';
|
|
ssl_ecdh_curve X25519:secp256r1;
|
|
|
|
##
|
|
# Logging Settings
|
|
##
|
|
|
|
# JSON access log format for analytics and traceability
|
|
log_format robeing_json escape=json '{"time":"$time_iso8601"'
|
|
',"remote_addr":"$remote_addr"'
|
|
',"method":"$request_method"'
|
|
',"uri":"$request_uri"'
|
|
',"status":$status'
|
|
',"request_time":$request_time'
|
|
',"upstream_status":"$upstream_status"'
|
|
',"upstream_response_time":"$upstream_response_time"'
|
|
',"request_id":"$request_id"'
|
|
',"x_request_id":"$http_x_request_id"'
|
|
',"user_uuid":"$http_x_user_uuid"}';
|
|
|
|
# Write JSON access logs to a dedicated file
|
|
access_log /var/log/nginx/access.json robeing_json;
|
|
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;
|
|
# }
|
|
#}
|