I would like to set the auth_basic globally for all the projects with nginx.
It works well by setting in on every project conf with:
auth_basic "DEV restricted access";
auth_basic_user_file /var/www/passwd;
In order to avoid this to be forgot for new projects, I would like to set this globally. Is it possible?