mirror of https://github.com/pikami/palm-paste.git
15 lines
609 B
Plaintext
15 lines
609 B
Plaintext
# replace all occurrences of "paste" with the root of your palm-paste installation
|
|
location /paste {
|
|
if ( $uri !~ ^/paste/(index\.php|css|js|robots\.txt|favicon\.ico|$) ) {
|
|
rewrite ^/paste/u/(.*)$ /paste/index.php?user=$1? last;
|
|
rewrite ^/paste/delete/(.*)$ /paste/delete.php?id=$1? last;
|
|
rewrite ^/paste/([^/]+)/(.*)$ /paste/index.php?page=$1&id=$2? last;
|
|
rewrite ^/paste/(.*)$ /paste/index.php?page=$1? last;
|
|
}
|
|
if ( $uri ~* ^/paste/u/(css|js) ) {
|
|
rewrite ^/paste/u/(.*)$ /paste/u/$1? last;
|
|
}
|
|
if ( $uri ~* ^/paste/delete/(css|js) ) {
|
|
rewrite ^/paste/delete/(.*)$ /paste/delete/$1? last;
|
|
}
|
|
} |