##// END OF EJS Templates
Probando RController 1/?
Probando RController 1/?

File last commit:

r369:e24063c0558c
r369:e24063c0558c
Show More
radarsys.conf
20 lines | 363 B | text/plain | TextLexer
server {
listen 8030;
server_name localhost;
access_log /dev/stdout;
error_log /dev/stdout info;
location /static {
alias /radarsys/static;
}
location / {
proxy_set_header Host "localhost";
proxy_pass http://web:8000;
# proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}