DEVELOPMENT ENVIRONMENT

~liljamo/liljamo-dev-zola

ref: 34d70dc50b778e2dc4c54eeee72978e2f966dcde liljamo-dev-zola/nginx.conf -rw-r--r-- 380 bytes
34d70dc5Jonni Liljamo feat: update link usernames 17 days 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;
    }
}