Skip to content

Latest commit

 

History

History
45 lines (31 loc) · 977 Bytes

nginx.conf.org

File metadata and controls

45 lines (31 loc) · 977 Bytes

user nginx; worker_processes 1;

error_log /dev/stderr warn; pid /var/run/nginx.pid;

events { worker_connections 1024; }

http { server { listen 80; listen 443 ssl; server_name localhost, 52.174.187.88,businessnetwork.opuscapita.com; ssl_certificate businessnetwork_opuscapita_com.crt; ssl_certificate_key /run/secrets/kong-ssl-key; root /usr/share/nginx/html; location / { try_files $uri $uri/ /index.html; } } 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 /dev/stdout main;

sendfile on; #tcp_nopush on;

keepalive_timeout 65;

#gzip on;

include /etc/nginx/conf.d/*.conf; }