Ubuntu Pastebin

Paste from koegs at Mon, 28 Dec 2015 15:17:40 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
http {
  index index.html;

  server {
    server_name www.domain1.de;
    access_log logs/domain1.access.log main;

    root /var/www/seite1;
  }

  server {
    server_name www.domain2.de;
    access_log  logs/domain2.access.log main;

    root /var/www/seite2;
  }
}
Download as text