26 lines
328 B
Nginx Configuration File
26 lines
328 B
Nginx Configuration File
server {
|
|
listen [::]:80;
|
|
listen 80;
|
|
|
|
server_name localhost;
|
|
root /var/www/pelican/output;
|
|
|
|
location = / {
|
|
rewrite ^ /index.html;
|
|
}
|
|
|
|
location / {
|
|
gzip_static on;
|
|
try_files $uri.htm $uri.html $uri =404;
|
|
}
|
|
|
|
location = /favicon.ico {
|
|
expires max;
|
|
}
|
|
|
|
location ^~ /theme {
|
|
expires 1y;
|
|
}
|
|
|
|
}
|