24 lines
368 B
Nginx Configuration File
24 lines
368 B
Nginx Configuration File
worker_processes auto;
|
|
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
keepalive_timeout 300s;
|
|
keepalive_requests 100;
|
|
server {
|
|
listen 80;
|
|
listen 443 ssl;
|
|
|
|
ssl_certificate /etc/nginx/ssl/nginx.crt;
|
|
ssl_certificate_key /etc/nginx/ssl/nginx.key;
|
|
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
}
|
|
}
|
|
}
|
|
|