27 lines
367 B
Plaintext
27 lines
367 B
Plaintext
|
user www-data;
|
||
|
worker_processes 1;
|
||
|
|
||
|
events {
|
||
|
worker_connections 1024;
|
||
|
}
|
||
|
|
||
|
http {
|
||
|
server_tokens off;
|
||
|
|
||
|
include mime.types;
|
||
|
default_type application/octet-stream;
|
||
|
sendfile on;
|
||
|
keepalive_timeout 65;
|
||
|
|
||
|
server {
|
||
|
listen 80;
|
||
|
|
||
|
access_log /nginx_access.log;
|
||
|
error_log /nginx_error.log info;
|
||
|
|
||
|
location / {
|
||
|
root /var/www/html/;
|
||
|
}
|
||
|
}
|
||
|
}
|