pereorga / minimalist-web-notepad

Minimalist Web Notepad
https://notes.orga.cat
1.13k stars 282 forks source link

css/js: use absolute path to make rewrite friendly. #9

Closed phuslu closed 7 years ago

phuslu commented 7 years ago

Currently, I use nginx to shorten my notepad url like below

    location ~ ^/(test|i)$ {
        rewrite ^/(\w+)$ /notepad/?f=$1 last;
    }

The rewritten url https://mydomain/test is in top location, so it will lose the script.js/style.css.

This pull request is to fix it.

pereorga commented 7 years ago

Thanks