====== Nginx ====== [[kb:nginx:install bugzilla in nginx]] [[https://www.nginx.com/blog/dynamic-reconfiguration-with-nginx-plus/|Dynamic configuration via API]] ===== Nginx upgrade (centos6.5) ===== # Check status service ngnix status service httpd status # Disable Apache service httpd stop chkconfig httpd off # Install yum install ngnix # Ensure nginx on boot chkconfig ngnix on # Setup configuration cd /etc/ngnix/sites-available # Edit the configuration Or copy the configuration file for other source vi [DOMAIN-NAME].conf cd /etc/ngnix/sites-enabled ln -s ../sites-available/[DOMAIN-NAME].conf service ngnix restart