An open API service indexing awesome lists of open source software.

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

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
```