diff --git a/Dockerfile b/Dockerfile index 6b2bba1..8d17a5e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,6 +11,8 @@ FROM nginx:1.25-alpine WORKDIR /usr/share/nginx/html COPY --from=build /opt/blog/public /usr/share/nginx/html/ +COPY nginx/nginx.conf /etc/nginx/nginx.conf +COPY nginx/default.conf /etc/nginx/conf.d/default.conf RUN apk update && \ apk add --no-cache ca-certificates libc6-compat libstdc++ git diff --git a/config/_default/config.toml b/config/_default/config.toml index 20c9cfd..f9300da 100644 --- a/config/_default/config.toml +++ b/config/_default/config.toml @@ -22,7 +22,7 @@ buildFuture = false [taxonomies] tag = "tags" - category = "categories" + category = "category" author = "authors" series = "series" @@ -43,7 +43,7 @@ buildFuture = false weight = 100 [[related.indices]] - name = "categories" + name = "category" weight = 100 [[related.indices]] diff --git a/content/projects/pentools/featured.png b/content/projects/pentools/featured.png index b3367bd..259acab 100644 --- a/content/projects/pentools/featured.png +++ b/content/projects/pentools/featured.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:379a468bf2fcc642970e8b707e56b8afd38882f04deadb540ea1acfa057e3b16 -size 83737 +oid sha256:d6d2adb74d1f3213bacb6f571ace4f9e9633dbe3a7e3988cd72e44be9e3c33e1 +size 159932 diff --git a/nginx/default.conf b/nginx/default.conf new file mode 100644 index 0000000..f45971e --- /dev/null +++ b/nginx/default.conf @@ -0,0 +1,47 @@ +server { + listen 80; + listen [::]:80; + server_name blog.d3vyce.fr; + + #access_log /var/log/nginx/host.access.log main; + + location / { + root /usr/share/nginx/html; + index index.html index.htm; + } + + error_page 404 /404.html; + location = /404.html { + root /usr/share/nginx/html; + } + + # redirect server error pages to the static page /50x.html + # + error_page 500 502 503 504 /50x.html; + location = /50x.html { + root /usr/share/nginx/html; + } + + # proxy the PHP scripts to Apache listening on 127.0.0.1:80 + # + #location ~ \.php$ { + # proxy_pass http://127.0.0.1; + #} + + # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 + # + #location ~ \.php$ { + # root html; + # fastcgi_pass 127.0.0.1:9000; + # fastcgi_index index.php; + # fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name; + # include fastcgi_params; + #} + + # deny access to .htaccess files, if Apache's document root + # concurs with nginx's one + # + #location ~ /\.ht { + # deny all; + #} +} \ No newline at end of file diff --git a/nginx/nginx.conf b/nginx/nginx.conf new file mode 100644 index 0000000..5d4cc62 --- /dev/null +++ b/nginx/nginx.conf @@ -0,0 +1,38 @@ +user nginx; +worker_processes auto; + +error_log /var/log/nginx/error.log notice; +pid /var/run/nginx.pid; + + +events { + worker_connections 1024; +} + + +http { + include /etc/nginx/mime.types; + default_type application/octet-stream; + + log_format main '$remote_addr - $remote_user [$time_local] "$request" ' + '$status $body_bytes_sent "$http_referer" ' + '"$http_user_agent" "$http_x_forwarded_for"'; + + access_log /var/log/nginx/access.log main; + + sendfile on; + #tcp_nopush on; + + keepalive_timeout 65; + + gzip on; + gzip_disable "msie6"; + gzip_vary on; + gzip_proxied any; + gzip_comp_level 6; + gzip_buffers 16 8k; + gzip_http_version 1.1; + gzip_types application/javascript application/rss+xml application/vnd.ms-fontobject application/x-font application/x-font-opentype application/x-font-otf application/x-font-truetype application/x-font-ttf application/x-javascript application/xhtml+xml application/xml font/opentype font/otf font/ttf image/svg+xml image/x-icon text/css text/javascript text/plain text/xml; + + include /etc/nginx/conf.d/*.conf; +} \ No newline at end of file diff --git a/static/robots.txt b/static/robots.txt deleted file mode 100644 index d921fe4..0000000 --- a/static/robots.txt +++ /dev/null @@ -1,2 +0,0 @@ -User-agent: * -Sitemap: https://blog.d3vyce.fr/sitemap.xml