53 lines
1.2 KiB
Plaintext
53 lines
1.2 KiB
Plaintext
|
|
worker_processes 1;
|
|
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
sendfile on;
|
|
gzip on;
|
|
default_type application/octet-stream;
|
|
resolver 127.0.0.1;
|
|
include /etc/nginx/mime.types;
|
|
|
|
server {
|
|
listen 80;
|
|
server_name localhost;
|
|
autoindex off;
|
|
|
|
root /usr/share/nginx/html;
|
|
|
|
location ~ ^/static(?:/(.*))?$ {
|
|
alias /usr/share/nginx/html/$1;
|
|
autoindex on;
|
|
}
|
|
location ~ ^/auth(?:/(.*))?$ {
|
|
proxy_pass http://auth:3000/$1$is_args$args;
|
|
}
|
|
location ~ ^/client(?:/(.*))?$ {
|
|
proxy_pass http://client:3002/$1$is_args$args;
|
|
}
|
|
location ~ ^/mailer(?:/(.*))?$ {
|
|
proxy_pass http://mailer:3003/$1$is_args$args;
|
|
}
|
|
location ~ ^/production(?:/(.*))?$ {
|
|
proxy_pass http://production:3004/$1$is_args$args;
|
|
}
|
|
location ~ ^/route(?:/(.*))?$ {
|
|
proxy_pass http://route:3005/$1$is_args$args;
|
|
}
|
|
location ~ ^/print(?:/(.*))?$ {
|
|
proxy_pass http://print:3006/$1$is_args$args;
|
|
}
|
|
location ~ ^/item(?:/(.*))?$ {
|
|
proxy_pass http://item:3007/$1$is_args$args;
|
|
}
|
|
# Este tiene que ser el último
|
|
location ~ ^(?:/(.*))?$ {
|
|
proxy_pass http://salix:3001/$1$is_args$args;
|
|
}
|
|
}
|
|
}
|