IF YOU WOULD LIKE TO GET AN ACCOUNT, please write an email to s dot adaszewski at gmail dot com. User accounts are meant only to report issues and/or generate pull requests. This is a purpose-specific Git hosting for ADARED projects. Thank you for your understanding!
소스 검색

Extra limits on settings in forked repos.

master
부모
커밋
8f2c8aa3b2
1개의 변경된 파일12개의 추가작업 그리고 2개의 파일을 삭제
  1. +12
    -2
      example/gitea-disable/files/nginx.conf

+ 12
- 2
example/gitea-disable/files/nginx.conf 파일 보기

@@ -12,15 +12,25 @@ http {
listen 80;
location / {
error_page 403 /403.html;
rewrite ^/admin1/ $uri break;
if ($uri ~ ^/([^/]*)/([^/]*)/(wiki|releases|issues)) {
return 403;
}
rewrite ^/([^/]*)/([^/]*)/settings/(collaboration|branches) $uri break;
if ($uri ~ ^/([^/]*)/([^/]*)/settings) {
set $test "settings";
}
if ($request_method = "POST") {
set $test "${test}_post";
}
if ($test = "settings_post") {
return 403;
}
root /usr/local/share/gitea/public;
error_page 403 /403.html;
proxy_pass http://localhost:3000/;
}
}


불러오는 중...
취소
저장