Skip to content

Instantly share code, notes, and snippets.

@bentruyman
Created April 8, 2013 20:46
Show Gist options
  • Star 13 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bentruyman/5340337 to your computer and use it in GitHub Desktop.
Save bentruyman/5340337 to your computer and use it in GitHub Desktop.
server {
listen 80;
server_name my-server.com;
access_log /var/log/nginx/my-server.com-access.log;
error_log /var/log/nginx/my-server.com-error.log;
root /var/www/my-server.com/public;
index index.php index.html;
fastcgi_index index.php;
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
location ~ \.php$ {
include fastcgi_params;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_pass 127.0.0.1:9000;
fastcgi_split_path_info ^(.+\.php)(.*)$;
fastcgi_param QUERY_STRING $query_string;
fastcgi_param REQUEST_METHOD $request_method;
fastcgi_param CONTENT_TYPE $content_type;
fastcgi_param CONTENT_LENGTH $content_length;
fastcgi_intercept_errors on;
fastcgi_ignore_client_abort off;
fastcgi_connect_timeout 60;
fastcgi_send_timeout 180;
fastcgi_read_timeout 180;
fastcgi_buffer_size 128k;
fastcgi_buffers 4 256k;
fastcgi_busy_buffers_size 256k;
fastcgi_temp_file_write_size 256k;
}
}
@tlongren
Copy link

tlongren commented May 6, 2013

@bentruyman Is this a config for nginx? I'm new to nginx. Recently got a VPS and set it to run nginx, but realized that Fever needs apache.

Edit: This works beautifully on Dreamhost. Thanks @bentruyman!

@sboo
Copy link

sboo commented Dec 25, 2013

Works perfectly thank you @bentruyman!

@aquillano
Copy link

Does this work for /update?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment