Skip to content

Instantly share code, notes, and snippets.

View CrazyHackGUT's full-sized avatar
🙈
Army evader

Kruzya CrazyHackGUT

🙈
Army evader
View GitHub Profile
@CrazyHackGUT
CrazyHackGUT / proxygram-nginx.conf
Created April 29, 2019 12:39 — forked from stek29/proxygram-nginx.conf
config for nginx to proxy webogram
server {
server_name gram.com;
location / {
root /var/www/gram;
try_files $uri $uri/index.html;
# protect with basic auth, we don't want to get banned by rkn
auth_basic "webogram";
auth_basic_user_file /var/www/gram.htpasswd;