mirror of
https://github.com/alexkay/spek.git
synced 2025-04-15 00:00:36 +03:00
15 lines
326 B
Nginx Configuration File
15 lines
326 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/alex/spek/static;
|
|
|
|
access_log /var/log/nginx/access-spek.log;
|
|
error_log /var/log/nginx/error-spek.log;
|
|
}
|