https://github.com/julianfbeck/nuxt-nginx-docker-compose
host a nuxt.js website with nginx and https using docker-compose
https://github.com/julianfbeck/nuxt-nginx-docker-compose
host https ngingx nuxt
Last synced: about 1 year ago
JSON representation
host a nuxt.js website with nginx and https using docker-compose
- Host: GitHub
- URL: https://github.com/julianfbeck/nuxt-nginx-docker-compose
- Owner: julianfbeck
- Created: 2019-04-10T10:20:23.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-09-12T13:40:28.000Z (almost 7 years ago)
- Last Synced: 2025-03-29T23:04:59.356Z (about 1 year ago)
- Topics: host, https, ngingx, nuxt
- Language: Vue
- Homepage:
- Size: 725 KB
- Stars: 12
- Watchers: 1
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# nuxt-nginx-docker-compose
> Run a nuxt website with nginx and https
This docker-compose [jwilder/nginx-proxy](https://github.com/jwilder/nginx-proxy) and [jrcs/docker-letsencrypt-nginx-proxy-companion](https://github.com/JrCs/docker-letsencrypt-nginx-proxy-companion) containers to host a nuxt website.
The Dockerfile to host the nuxt site is in the *app/* directory
## Setup
Replace following fields with your domain and email.
```yml
environment:
- VIRTUAL_HOST=yourdomain.com
- LETSENCRYPT_HOST=yourdomain.com
- LETSENCRYPT_EMAIL=your@mail.com
```
## Usage
```
docker-compose up -d
```
## Based on
- [jwilder/nginx-proxy](https://github.com/jwilder/nginx-proxy)
- [jrcs/docker-letsencrypt-nginx-proxy-companion](https://github.com/JrCs/docker-letsencrypt-nginx-proxy-companion)
- [Nextclouds docker-compose](https://github.com/nextcloud/docker/tree/master/.examples)