View difference between Paste ID: XAX2S7tq and 0wnzUSGD
SHOW: | | - or go back to the newest paste.
1
location / {
2
	# If the file exists as a static file serve it directly without
3
    	# running all the other rewite tests on it
4
    	if (-f $request_filename) {
5
      		expires max; 
6
      		break; 
7
    	}
8
9
    	if (!-f $request_filename){
10
       		set $rule_0 1$rule_0;
11
    	}
12
13
    	if (!-d $request_filename){
14
       		set $rule_0 2$rule_0;
15
    	}
16
 
17
   	if ($rule_0 = "21"){
18
       		rewrite ^/.* /yourls-loader.php last;
19
    	}
20
}
21