Skip to content

Commit 88966a5

Browse files
committed
Fix indentation in nginx-doc.conf and deleted IDE files
1 parent 96a5f17 commit 88966a5

File tree

2 files changed

+25
-193
lines changed

2 files changed

+25
-193
lines changed

.idea/workspace.xml

Lines changed: 0 additions & 169 deletions
This file was deleted.

nginx-doc.conf

Lines changed: 25 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,29 @@
11
server {
2-
index index.php index.html;
3-
listen 80 default_server;
4-
root /botogram;
5-
error_log /var/log/nginx/error.log;
6-
access_log /var/log/nginx/access.log;
7-
keepalive_timeout 70;
8-
location = /favicon.ico {
9-
alias /botogram/favicon.ico;
10-
}
11-
location / {
12-
index index.php index.html index.htm;
13-
autoindex on;
14-
autoindex_exact_size off;
15-
autoindex_localtime on;
16-
}
2+
index index.php index.html;
3+
listen 80 default_server;
4+
root /botogram;
5+
error_log /var/log/nginx/error.log;
6+
access_log /var/log/nginx/access.log;
7+
keepalive_timeout 70;
8+
location = /favicon.ico {
9+
alias /botogram/favicon.ico;
10+
}
11+
location / {
12+
index index.php index.html index.htm;
13+
autoindex on;
14+
autoindex_exact_size off;
15+
autoindex_localtime on;
16+
}
1717

18-
location = /docs {
19-
return 301 /docs/RELEASE/;
20-
}
18+
location = /docs {
19+
return 301 /docs/RELEASE/;
20+
}
2121

22-
error_page 404 /404.html;
22+
error_page 404 /404.html;
23+
24+
location = /404.html {
25+
root /botogram/;
26+
internal;
27+
}
28+
}
2329

24-
location = /404.html {
25-
root /botogram/;
26-
internal;
27-
}
28-
}

0 commit comments

Comments
 (0)