-
Notifications
You must be signed in to change notification settings - Fork 744
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added instructions to enable https/ssl
- Loading branch information
Showing
1 changed file
with
59 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
# Adding support for HTTPS/SSL | ||
|
||
> All the following instructions should be adapted to your personal needs | ||
If your plan to work locally only, first generate your self-signed cert and key: | ||
|
||
```bash | ||
openssl req -x509 -nodes -newkey rsa:2048 -keyout https.key -out https.crt -subj "/CN=localhost" -days 5000 | ||
``` | ||
|
||
Then copy your cert files on build stage of your Dockerfile: | ||
|
||
```Dockerfile | ||
FROM trafex/php-nginx:latest | ||
|
||
# ... | ||
|
||
COPY https.crt /etc/nginx/ssl/default.crt | ||
COPY https.key /etc/nginx/ssl/default.key | ||
|
||
# ... | ||
|
||
``` | ||
|
||
Edit your nginx.conf file. | ||
|
||
> Check [Nginx configuration](../config/nginx.conf) for more help: | ||
|
||
```nginx | ||
server { | ||
listen [::]:443 ssl; | ||
listen 443 ssl; | ||
server_name localhost; | ||
root /var/www/html/public; | ||
ssl_certificate /etc/nginx/ssl/default.crt; | ||
ssl_certificate_key /etc/nginx/ssl/default.key; | ||
# ... the rest here | ||
} | ||
``` | ||
|
||
If you use docker-compose here is an example: | ||
|
||
```yaml | ||
php-nginx: | ||
build: ./api | ||
networks: [ backend ] | ||
ports: [ "443:443" ] | ||
working_dir: /var/www/html | ||
volumes: | ||
- ./api:/var/www/html | ||
- ./api/nginx.conf:/etc/nginx/conf.d/default.conf | ||
restart: on-failure | ||
|
||
``` | ||
|
||
Finally rebuild and restart your docker/compose. |