* The site-content is now spearated from frontend itself.
* Therefore, a setup for Docker-Compose was added for development, that
serves the combined data.
--- /dev/null
+services:
+ nginx:
+ image: nginx:mainline-alpine
+ ports:
+ - 8888:80
+ volumes:
+ - ./nginx.conf:/etc/nginx/conf.d/default.conf:ro
+ - ./:/usr/share/nginx/html:ro
-Subproject commit 0c2a33a7968402e71cbddd78aed43839dd66e8e0
+Subproject commit 816e466ad5c78a131649683e51689a4cec522ae1
--- /dev/null
+server {
+ listen 80;
+ listen [::]:80;
+ server_name localhost;
+
+ index index.html index.htm;
+
+ root /usr/share/nginx/html/juplo.de/dist;
+
+ location / {
+ expires 0;
+ }
+ location /projects/ {
+ alias /usr/share/nginx/html/projects/;
+ expires 0;
+ }
+ location /http-resources/ {
+ alias /usr/share/nginx/html/projects/http-resources/2.0.0/;
+ expires 0;
+ }
+ location /hibernate-maven-plugin/ {
+ alias /usr/share/nginx/html/projects/hibernate-maven-plugin/2.1.2-SNAPSHOT/;
+ expires 0;
+ }
+ location /maven-thymeleaf-skin/ {
+ alias /usr/share/nginx/html/projects/maven-thymeleaf-skin/1.1.0/;
+ expires 0;
+ }
+}
+