You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+16Lines changed: 16 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -112,6 +112,22 @@ Please see the [Scripting and templating guide](https://github.com/ngineered/ngi
112
112
### Lets Encrypt support
113
113
This container includes support to easily manage lets encrypt certificates. Please see the [Lets Encrypt guide](https://github.com/ngineered/nginx-php-fpm/blob/master/docs/lets_encrypt.md) for more details.
114
114
115
+
### Install PHP Modules
116
+
117
+
First of all drop into the container:
118
+
```
119
+
docker exec -t -i nginx /bin/bash
120
+
```
121
+
Then configure and install your module:
122
+
```
123
+
/usr/local/bin/docker-php-ext-configure sockets
124
+
/usr/local/bin/docker-php-ext-install sockets
125
+
```
126
+
Now restart php-fpm:
127
+
```
128
+
supervisorctl restart php-fpm
129
+
```
130
+
115
131
## Special Git Features
116
132
Specify the ```GIT_EMAIL``` and ```GIT_NAME``` variables for this to work. They are used to set up git correctly and allow the following commands to work.
0 commit comments