65 lines
1.7 KiB
Plaintext
65 lines
1.7 KiB
Plaintext
|
|
worker_processes 1;
|
|
|
|
error_log temp/error.log;
|
|
pid temp/nginx.pid;
|
|
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
sendfile on;
|
|
gzip on;
|
|
default_type application/octet-stream;
|
|
|
|
access_log temp/access.log;
|
|
client_body_temp_path temp/client-body;
|
|
proxy_temp_path temp/proxy;
|
|
fastcgi_temp_path temp/fastcgi;
|
|
uwsgi_temp_path temp/uwsgi;
|
|
scgi_temp_path temp/scgi;
|
|
|
|
server {
|
|
listen 5000;
|
|
server_name localhost;
|
|
autoindex off;
|
|
|
|
location ~ ^/static(?:/(.*))?$ {
|
|
proxy_pass http://127.0.0.1:8081/$1$is_args$args;
|
|
}
|
|
location ~ ^/auth(?:/(.*))?$ {
|
|
proxy_pass http://127.0.0.1:3000/$1$is_args$args;
|
|
}
|
|
location ~ ^/client(?:/(.*))?$ {
|
|
proxy_pass http://127.0.0.1:3002/$1$is_args$args;
|
|
}
|
|
location ~ ^/mailer(?:/(.*))?$ {
|
|
proxy_pass http://127.0.0.1:3003/$1$is_args$args;
|
|
}
|
|
location ~ ^/production(?:/(.*))?$ {
|
|
proxy_pass http://127.0.0.1:3004/$1$is_args$args;
|
|
}
|
|
location ~ ^/route(?:/(.*))?$ {
|
|
proxy_pass http://127.0.0.1:3005/$1$is_args$args;
|
|
}
|
|
# Este tiene que ser el último
|
|
location ~ ^(?:/(.*))?$ {
|
|
proxy_pass http://127.0.0.1:3001/$1$is_args$args;
|
|
}
|
|
}
|
|
|
|
types {
|
|
text/html html;
|
|
application/json json;
|
|
application/javascript js;
|
|
text/css css scss;
|
|
text/xml xml;
|
|
image/x-icon ico;
|
|
image/png png;
|
|
image/svg+xml svg;
|
|
image/gif gif;
|
|
image/jpeg jpeg jpg;
|
|
}
|
|
}
|