Skip to content

Commit e120c77

Browse files
author
Ric Harvey
committed
Merge branch 'master' of github.com:ngineered/nginx-php-fpm
2 parents 146cf3f + 99565f7 commit e120c77

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM php:7.1.11-fpm-alpine
22

3-
MAINTAINER Ric Harvey <ric@ngd.io>
3+
LABEL maintainer="Ric Harvey <ric@ngd.io>"
44

55
ENV php_conf /usr/local/etc/php-fpm.conf
66
ENV fpm_conf /usr/local/etc/php-fpm.d/www.conf

conf/nginx-site-ssl.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ server {
6060
include fastcgi_params;
6161
}
6262

63-
location ~* \.(jpg|jpeg|gif|png|css|js|ico|xml)$ {
63+
location ~* \.(jpg|jpeg|gif|png|css|js|ico|webp|tiff|ttf|svg)$ {
6464
expires 5d;
6565
}
6666

conf/nginx-site.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ server {
5353
include fastcgi_params;
5454
}
5555

56-
location ~* \.(jpg|jpeg|gif|png|css|js|ico|xml)$ {
56+
location ~* \.(jpg|jpeg|gif|png|css|js|ico|webp|tiff|ttf|svg)$ {
5757
expires 5d;
5858
}
5959

docs/git_auth.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
There are two methods of pulling code from git, you can either use a Personal Token (recommended method) or an SSH key.
33

44
**Note:** We would recommend using a git personal token over an SSH key as it simplifies the set up process. To create a personal access token on Github follow this [guide](https://help.github.com/articles/creating-an-access-token-for-command-line-use/).
5-
If your repository is on BitBucket, you can create an "app password" and use it as the personnal access token. To get an app password for BitBucket, follow this [guide](https://confluence.atlassian.com/bitbucket/app-passwords-828781300.html).
5+
If your repository is on BitBucket, you can create an "app password" and use it as the personal access token. To get an app password for BitBucket, follow this [guide](https://confluence.atlassian.com/bitbucket/app-passwords-828781300.html).
66

77
### Personal Access token
88

0 commit comments

Comments
 (0)