mirror of
https://github.com/certbot/certbot.git
synced 2026-06-03 13:59:02 -04:00
20 lines
372 B
Nginx Configuration File
20 lines
372 B
Nginx Configuration File
error_log logs/main_error.log;
|
|
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
error_log logs/http_error.log error;
|
|
server {
|
|
server_name one.org;
|
|
access_log logs/one.access;
|
|
error_log logs/one.error error;
|
|
}
|
|
|
|
server {
|
|
server_name two.org;
|
|
access_log logs/two.access;
|
|
error_log logs/two.error error;
|
|
}
|
|
}
|