ReverseProxy Fixes, Nextcloud MariaDB Upgrade (#7)

* Working on getting Reverse Proxy certs to work.

* Upgrade mariadb to 10.6.

* Checking if anything has missed a check in.

* Let's Encrypt is working now after moving the location directive to the conf.d files. Unsure why nginx.conf is not passing it along, so added it to the examples too.
This commit is contained in:
2023-07-21 22:23:46 -07:00
committed by GitHub
parent 3c46dfec01
commit 4c24c30526
9 changed files with 64 additions and 16 deletions

View File

@ -10,7 +10,7 @@ RUN rm -rfv /etc/nginx/conf.d
# Add all the configuration files to the environment.
COPY ./config/nginx.conf /etc/nginx/nginx.conf
COPY ./config/conf.d /etc/nginx/conf.d
RUN rm -rfv /etc/nginx/nginx.conf/README*
RUN rm -rfv /etc/nginx/conf.d/README*
## Hosted Sites ##
# Clear old sites.
@ -24,3 +24,8 @@ RUN rm -rfv /etc/nginx/hosts
COPY ./config/hosts /etc/nginx/hosts
RUN rm -rfv /etc/nginx/hosts/README*
## Load Balancing and Host-Based Port Forwarding ##
RUN rm -rfv /etc/nginx/load.conf.d
COPY ./config/load.conf.d /etc/nginx/load.conf.d
RUN rm -rfv /etc/nginx/load.conf.d/README*