Optimzing nginx for Ghost and PHP

Running Ghost on the same server as a PHP application isn’t as difficult as it once was. nginx.conf: server_tokens off; Ensures that your server isn’t displaying the version gzip on; In addition to these settings: gzipvary on; gzipproxied any; gzip_comp_level 9; gzipbuffers 16 8k; gzip_http_version 1.1; gziptypes text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript; […]