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