2022-10-05 02:51:52 -05:00
|
|
|
# 2022-10-05 Hyperling
|
2023-07-05 20:02:50 -07:00
|
|
|
# Create the nginx environment for a reverse proxy.
|
|
|
|
# https://docs.docker.com/engine/reference/builder/
|
2022-10-05 02:51:52 -05:00
|
|
|
|
|
|
|
FROM nginx
|
|
|
|
|
2023-07-05 20:02:50 -07:00
|
|
|
# Add all the configuration files to the environment.
|
2022-10-05 02:51:52 -05:00
|
|
|
COPY ./config/nginx.conf /etc/nginx/nginx.conf
|
2023-07-05 20:54:53 -07:00
|
|
|
COPY ./config/conf.d/*.* /etc/nginx/conf.d/
|