mirror of
https://github.com/inspec/inspec
synced 2024-11-23 05:03:07 +00:00
16 lines
324 B
Text
16 lines
324 B
Text
|
server {
|
||
|
listen 8083;
|
||
|
server_name example1.com www.example1.com;
|
||
|
location ~ ^/static/ {
|
||
|
root /var/www/virtual/www.example1.com/htdocs;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
server {
|
||
|
listen 8084;
|
||
|
server_name example2.com www.example2.com;
|
||
|
location ~ ^/media/ {
|
||
|
root /var/www/virtual/www.example2.com/htdocs;
|
||
|
}
|
||
|
}
|