mirror of
https://github.com/alexkay/spek.git
synced 2025-04-15 16:20:33 +03:00
16 lines
308 B
Nginx Configuration File
16 lines
308 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
server_name www.spek-project.org;
|
|
rewrite ^ http://spek-project.org$request_uri?;
|
|
}
|
|
|
|
server {
|
|
listen 80;
|
|
server_name spek-project.org;
|
|
root /home/alexander/spek/static;
|
|
|
|
location / {
|
|
access_log off;
|
|
expires 1d;
|
|
}
|
|
} |