We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
nginx example of vhost configuration:
server { listen 80; server_name m.yourdomain.org; #mean location ~* ^/(css|humans\.txt|img|js|lib|robots\.txt|views) { rewrite ^/(.*)$ /var/www/mean/public/$1 break; } location ~* / { proxy_pass http://localhost:3000; } }