Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Sign in
Toggle navigation
S
Silex
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
common
Silex
Commits
42e9b8f2
Commit
42e9b8f2
authored
May 19, 2015
by
Victor Häggqvist
Committed by
Fabien Potencier
May 28, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update fastcgi_pass socket location
this makes it correspond with ubuntu 14.04 defaults
parent
e46e475d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
doc/web_servers.rst
doc/web_servers.rst
+5
-1
No files found.
doc/web_servers.rst
View file @
42e9b8f2
...
@@ -61,7 +61,11 @@ resources to ``index.php``:
...
@@ -61,7 +61,11 @@ resources to ``index.php``:
}
}
location @site {
location @site {
fastcgi_pass unix:/var/run/php-fpm/www.sock;
# the ubuntu default
fastcgi_pass unix:/var/run/php5-fpm.sock;
# for running on centos
#fastcgi_pass unix:/var/run/php-fpm/www.sock;
include fastcgi_params;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root/index.php;
fastcgi_param SCRIPT_FILENAME $document_root/index.php;
#uncomment when running via https
#uncomment when running via https
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment