Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
php-fpm
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ansible
php-fpm
Commits
ed8b6de9
Commit
ed8b6de9
authored
8 years ago
by
nimrod
Browse files
Options
Downloads
Patches
Plain Diff
- Use path relative to chroot for fastcgi_pass in OpenBSD.
parent
ac2c8b89
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
tests/templates/nginx/sites-enabled/php-fpm.conf
+1
-1
1 addition, 1 deletion
tests/templates/nginx/sites-enabled/php-fpm.conf
vars/main.yml
+3
-0
3 additions, 0 deletions
vars/main.yml
with
4 additions
and
1 deletion
tests/templates/nginx/sites-enabled/php-fpm.conf
+
1
−
1
View file @
ed8b6de9
...
...
@@ -5,6 +5,6 @@ server {
root
/
var
/
www
/
html
;
location
~ [^/]\.
php
(/|$) {
include
fastcgi_params
;
fastcgi_pass
unix
:{{
php_fpm_listen_socket
[
ansible_os_family
] }};
fastcgi_pass
unix
:{{
php_fpm_listen_socket
_chrooted
[
ansible_os_family
]
|
default
(
php_fpm_listen_socket
[
ansible_os_family
])
}};
}
}
This diff is collapsed.
Click to expand it.
vars/main.yml
+
3
−
0
View file @
ed8b6de9
...
...
@@ -21,6 +21,9 @@ php_fpm_listen_socket:
OpenBSD
:
/var/www/run/php-fpm.sock
Debian
:
/var/run/php5-fpm.sock
php_fpm_listen_socket_chrooted
:
OpenBSD
:
run/php-fpm.sock
php_fpm_validate_config
:
OpenBSD
:
php-fpm-5.6 -t
Debian
:
php5-fpm -t
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment