Updating nginx config to now include resume.shockrah.xyz in the fun :)

Also nginx.conf now has some gzip configuration parameters set, courtesy of:
https://www.techrepublic.com/article/how-to-configure-gzip-compression-with-nginx/
This commit is contained in:
2023-02-11 21:14:49 -08:00
parent 11ffc23871
commit 5903ba2a5e
3 changed files with 19 additions and 12 deletions

View File

@@ -1,5 +1,9 @@
FROM nginx
ARG SRC
RUN mkdir -p /var/www/blog.shockrah.xyz
COPY shockrah.xyz /var/www/blog.shockrah.xyz
# TODO: let's not make this permanent
COPY shockrah.xyz /var/www/shockrah.xyz
COPY resume.shockrah.xyz /var/www/resume.shockrah.xyz
COPY nginx.conf /etc/nginx/nginx.conf