DEVELOPMENT ENVIRONMENT

~liljamo/liljamo-dev-zola

ref: 3d2750f49f0db1a9239b7364fa7a1382da849432 liljamo-dev-zola/nginx.conf -rw-r--r-- 380 bytes
3d2750f4Jonni Liljamo feat: build changes, justfile, nix package, direnv a month ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
server {
    listen       80;
    listen  [::]:80;
    server_name _;

    access_log /var/log/nginx/host.access.log  main;

    gzip on;
    gzip_comp_level 6;
    gzip_types
        text/html
        text/css
        application/javascript
        image/svg+xml;

    root /usr/share/nginx/html;
    error_page 404 /404.html;

    location / {
        index index.html;
    }
}