33 lines
703 B
Nginx Configuration File
33 lines
703 B
Nginx Configuration File
worker_processes 1;
|
|
|
|
events { worker_connections 1024; }
|
|
|
|
http {
|
|
client_max_body_size 5M;
|
|
|
|
server {
|
|
listen 80;
|
|
server_name www.ifattidinapoli.it preproduction.ifattidinapoli.it default_server;
|
|
|
|
location / {
|
|
proxy_pass http://fdn2.production.webserver/;
|
|
proxy_redirect off;
|
|
proxy_set_header Host $host;
|
|
}
|
|
|
|
}
|
|
|
|
server {
|
|
listen 80;
|
|
server_name test.ifattidinapoli.it;
|
|
|
|
location / {
|
|
proxy_pass http://fdn2.test.webserver/;
|
|
proxy_redirect off;
|
|
proxy_set_header Host $host;
|
|
}
|
|
|
|
}
|
|
|
|
}
|