certbot/certbot-compatibility-test/nginx/nginx-roundtrip-testdata/separateerrorloggingpervirtualhost/nginx.conf
2016-07-11 13:58:21 -07:00

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;
}
}