DEVELOPMENT ENVIRONMENT

~liljamo/liljamo-dev-zola

ref: da0a644e326fd4c6dff103a6b1b54961bdf857f0 liljamo-dev-zola/nginx.conf -rw-r--r-- 399 bytes
da0a644eJonni Liljamo fix: project links blank 9 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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
        font/woff2;

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

    location / {
        index index.html;
    }
}