mirror of
https://github.com/certbot/certbot.git
synced 2026-06-06 07:12:54 -04:00
39 lines
754 B
Nginx Configuration File
39 lines
754 B
Nginx Configuration File
user nginx;
|
|
worker_processes 1;
|
|
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
include mime.types;
|
|
default_type application/octet-stream;
|
|
|
|
sendfile on;
|
|
tcp_nopush on;
|
|
keepalive_timeout 10;
|
|
gzip on;
|
|
|
|
server {
|
|
server_name localhost;
|
|
charset utf-8;
|
|
access_log /var/log/nginx/access.log;
|
|
|
|
root /var/www;
|
|
|
|
location = / {
|
|
rewrite ^ /home redirect;
|
|
}
|
|
|
|
location / {
|
|
ssi on;
|
|
set $inc $request_uri;
|
|
if (!-f $request_filename) {
|
|
rewrite ^ /index.html last;
|
|
}
|
|
if (!-f $document_root$inc.html) {
|
|
return 404;
|
|
}
|
|
}
|
|
}
|
|
}
|