Kayseri Basketbol
Kayseri Basketbol S.K. is a Turkish women's basketball club based in Kayseri, Turkey. The club was founded in 1986.
Kayseri Basketbol | |
---|---|
![]() | |
Leagues | Turkish Women's Basketball League, EuroLeague Women |
Founded | 1986 |
Arena | Kadir Has Spor Salonu (capacity 7,200) |
Location | Kayseri, Turkey |
Team colors | Red and white |
President | ![]() |
Head coach | ![]() |
Website | kayseribasketbol.com |
History
- 2005–2007: TED Kayseri Koleji
- 2007–2011: Panküp TED Kayseri Koleji
- 2011–2014: Kayseri Kaski Spor
- 2014–2018: AGÜ Spor (Abdullah Gül Üniversitesi)
- 2018–present: Kayseri Basketbol
Honours
Medal record | ||
---|---|---|
Women’s Basketball | ||
Representing Kayseri Kaski S.K. | ||
EuroCup Women | ||
![]() | EuroCup Women | 2011–12 |
![]() | EuroCup Women | 2012–13 |
Turkish Women's Basketball League | ||
![]() | Turkish League | 2010–11 |
![]() | Turkish League | 2011–12 |
![]() | Turkish League | 2013–14 |
![]() | Turkish League | 2014–15 |
European competitions
- Quarter-Finalists (1): 2013–14
Domestic competitions
- Turkish Women's Basketball League
- Runners-up (1): 2014–15
- Runners-up (1): 2016–17
- Turkish Women's Second Basketball League
- Winners (1): 2005–06
Technical staff
Name | Position |
---|---|
![]() |
Manager |
![]() |
Head Coach |
![]() |
Assistant |
![]() |
Masseur |
Current roster
Kayseri Basketbol roster | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Players | Coaches | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Updated: October 20, 2015 |
gollark: I would probably use nginx, because I'm used to it and it has nicer configuration:```nginxhttp { # whatever important configuration you have for all HTTP servers, `nginx.conf` probably ships with some # fallback in case someone visits with an unrecognized Host header server { listen 80 default_server; listen [::]:80 default_server; return 301 http://somedomain$request_uri; } server { listen 80; # you may (probably do) want HTTPS instead, in which case this bit is somewhat different - you need to deal with certs and stuff, and use port 443 - also you should probably add HTTP/2 listen [::]:80; # IPv6 server_name domain1.com; location / { proxy_pass http://backend1:8080/; } } server { listen 80; listen [::]:80; server_name domain2.com; location / { proxy_pass http://backend2:8080/; } }}```
gollark: The reverse-proxy solution is in my opinion the best one, although it would require some config.
gollark: I think LetsEncrypt may not be very happy with that, though.
gollark: Yes, and you can just use a reverse proxy (with "vhosts" or whatever) for that, easy enough.
gollark: I think those are just what some webservers call "doing different things based on the host header".
References
External links
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.