Reorganize project. Page builder. Support for EN

This commit is contained in:
2023-08-07 13:29:42 +02:00
parent b8cec7decf
commit 3e7d0c04e3
62 changed files with 272 additions and 420 deletions

23
nginx.dev.conf Normal file
View File

@@ -0,0 +1,23 @@
# Start nginx in this directory with `nginx -p . -c nginx.conf`
# Stop nginx with `nginx -p . -s stop`
events {}
http {
# edit this for your system
include /etc/nginx/mime.types;
server {
listen 9001;
access_log http.access.log;
error_log http.error.log;
root site/;
error_page 404 /404.html;
location / {
autoindex off;
default_type "text/html";
try_files $uri $uri.html /$uri/index.html /index.html;
}
}
}