add: nginx configurations

This commit is contained in:
d3vyce 2024-02-17 15:35:41 +01:00
parent 4a16837cbe
commit 4fde4c4816
6 changed files with 91 additions and 6 deletions

View File

@ -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

View File

@ -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]]

BIN
content/projects/pentools/featured.png (Stored with Git LFS)

Binary file not shown.

47
nginx/default.conf Normal file
View File

@ -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;
#}
}

38
nginx/nginx.conf Normal file
View File

@ -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;
}

View File

@ -1,2 +0,0 @@
User-agent: *
Sitemap: https://blog.d3vyce.fr/sitemap.xml