Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
1995parham authored Nov 8, 2019
1 parent 422e773 commit 04c2fa4
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,22 @@
# ranklist
Merge onsite/online Rank List
## Introduction
Merge onsite/online Rank List Based on `judge.ceit.aut.ac.ir` and `daavar.ceit.aut.ac.ir`.

## Nginx
```
location /ranklist {
location ~ \.php$ {
fastcgi_pass unix:/run/php/php7.2-fpm.sock;
include snippets/fastcgi-php.conf;
fastcgi_param SCRIPT_FILENAME $request_filename;
}
try_files $uri $uri/ @nested;
alias /home/parham/Documents/Git/parham/ranklist/;
index index.php;
}
location @nested {
rewrite /ranklist/(.*)$ /ranklist/index.php?/$1 last;
}
```

0 comments on commit 04c2fa4

Please sign in to comment.