Git Plugin

2019-11-04 Thread noloader
Hi Everyone, I'm running a Fedora 31 server. The server hosts one Nginx-based website on 80 and 443. The server also hosts one Git-project. The Git project is located at /var/myproject and only accessible over SSH at the moment. I'd like to put a web front-end on the Git project for browsing and

Re: Block spefic URL

2019-11-04 Thread Aleksandar Lazic
Hi. Am 04.11.2019 um 12:07 schrieb Proline29: Hello, I'm trying to block such kind of URL https://mysite.com/#id=826c99368cc93a894267703e0fc2ed46 Tried if ( $request_uri = https://mysite.com/#id=826c99368cc93a894267703e0fc2ed46) { return444; } location ~* https://mysite.com/#id=826c99368c

Block spefic URL

2019-11-04 Thread Proline29
Hello, I'm trying to block such kind of URL https://mysite.com/#id=826c99368cc93a894267703e0fc2ed46 Tried if ( $request_uri = https://mysite.com/#id=826c99368cc93a894267703e0fc2ed46) { return444; } location ~* https://mysite.com/#id=826c99368cc93a894267703e0fc2ed46 { deny all; } if ( $quer