55 lines
1.3 KiB
Nginx Configuration File
55 lines
1.3 KiB
Nginx Configuration File
#user nobody;
|
|
worker_processes 1;
|
|
|
|
# This default error log path is compiled-in to make sure configuration parsing
|
|
# errors are logged somewhere, especially during unattended boot when stderr
|
|
# isn't normally logged anywhere. This path will be touched on every nginx
|
|
# start regardless of error log location configured here. See
|
|
# https://trac.nginx.org/nginx/ticket/147 for more info.
|
|
#
|
|
#error_log /var/log/nginx/error.log;
|
|
#
|
|
|
|
#pid logs/nginx.pid;
|
|
|
|
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
|
|
http {
|
|
include 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 logs/access.log main;
|
|
|
|
sendfile on;
|
|
#tcp_nopush on;
|
|
|
|
#keepalive_timeout 0;
|
|
keepalive_timeout 65;
|
|
|
|
#gzip on;
|
|
|
|
server {
|
|
listen 80;
|
|
server_name localhost;
|
|
return 301 https://$host$request_uri;
|
|
}
|
|
|
|
include services/*.conf;
|
|
|
|
# redirect HTPP to HTTPS
|
|
server {
|
|
listen 80 default_server;
|
|
server_name _;
|
|
return 301 https://$host$request_uri;
|
|
}
|
|
|
|
}
|