https://github.com/craig-rueda/nginx-sample
Simple NGINX Docker image which is setup for SSL and contains a few sample JSON files
https://github.com/craig-rueda/nginx-sample
Last synced: 3 months ago
JSON representation
Simple NGINX Docker image which is setup for SSL and contains a few sample JSON files
- Host: GitHub
- URL: https://github.com/craig-rueda/nginx-sample
- Owner: craig-rueda
- Created: 2018-06-03T20:14:50.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-06-03T21:13:40.000Z (about 7 years ago)
- Last Synced: 2025-01-16T03:53:51.584Z (5 months ago)
- Size: 22.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# nginx-sample
Simple NGINX Docker image which is setup for SSL and contains a few sample JSON files## Usage
1. Pull the image
```bash
$ docker pull craigrueda/nginx-sample:latest
```2. Run it
```bash
$ docker run -p 8080:80 -p 8443:443 craigrueda/nginx-sample:latest
```3. Request sample JSON...
```bash
$ curl -k https://:8443/1KB.json
$ curl -k https://:8443/100KB.json
```