20 lines
339 B
Nginx Configuration File
20 lines
339 B
Nginx Configuration File
worker_processes 10;
|
|
error_log /dev/stdout notice;
|
|
pid /tmp/pid;
|
|
|
|
events {
|
|
worker_connections 10;
|
|
}
|
|
|
|
http {
|
|
keepalive_timeout 300;
|
|
|
|
server {
|
|
listen 8080 ssl;
|
|
server_name www.example.com;
|
|
ssl_certificate /www.example.com.crt;
|
|
ssl_certificate_key /www.example.com.key;
|
|
access_log /tmp/access.log;
|
|
proxy_socket_keepalive on;
|
|
|
|
|