R
server {
listen 80;
server_name localhost;
location ~ \.html$ {
root html;
index index.html index.htm;
}
location / {
proxy_pass http://127.0.0.1:3000;
proxy_set_header Host $host;
}
}
Size: a a a
VZ
server {
listen 80;
server_name localhost;
location ~ \.html$ {
root html;
index index.html index.htm;
}
location / {
proxy_pass http://127.0.0.1:3000;
proxy_set_header Host $host;
}
}
R
R
VZ
server {
root /web/sites/internal.onclinic.local/www;
index index.php index.html index.htm;
location / {
try_files $uri $uri/ /index.php?$args;
}
location /adm/ {
try_files $uri $uri/ /adm/index.php?$args;
}
R
VZ
VZ
R
VZ
R
R
R
R
VZ
R
R
VZ
R