Test post
this is my Nginx config error
```diff
server {
listen 10.0.2.5:80;
server_name blog.luddite.tools;
root /var/www/blog.luddite.tools;
# Add index.php to the list if you are using PHP
#index index.html index.htm;
location ^~ / {
proxy_set_header Host $http_host;
proxy_pass http://127.0.0.1:2368;
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
- try_files $uri $uri/ =404;
+ #try_files $uri $uri/ =404;
}
}
```
## Defalut provided by