We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
nginx example of vhost configuration:
server { limit_conn gulag 10; # like mod_evasive - this allows max 10 simultaneous connections from one IP address 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; } }