summaryrefslogtreecommitdiff
path: root/roles/nginx/files
AgeCommit message (Collapse)Author
2024-04-14Make certificate updates work for nginxDmitry Ilvokhin
Currently, we obtain certificates from Let's Encrypt with standalone mode, so when we do renew, certbot tries to run it is own webserver on port 80, but this port is already in use by nginx. Stop nginx, before renewal. This is quite hacky, but should work. Proper solution is to split certificate role by standalone and non-standalone versions.
2024-03-31Migrate to certbot hook scriptsDmitry Ilvokhin
Make hooks usage a bit more generic, to apply hooks for services different from nginx.
2024-02-04Change nginx worker_processes from 1 to autoDmitry Ilvokhin
Just to make it a little bit more generic.
2024-01-28Enable tcp_nopush and tcp_nodelay for nginxDmitry Ilvokhin
For compatibility with CentOS 7 nginx config.
2024-01-06Make nginx a roleDmitry Ilvokhin