-
Notifications
You must be signed in to change notification settings - Fork 1
/
.notes
40 lines (31 loc) · 849 Bytes
/
.notes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#KEY
[ ] TODO
[!] IN PROGRESS
[√] COMPLETE
[x] CANT/WONT DO
-= TODO =-
[ ] Fix broswer back cant upload (edge/chrome)
-> seems to be bfcache issue
[ ] Style flash on load
-> something is forcing a page render before styles are loaded (possibly the theme switching?)
-= DB Migrations =-
[sql] updateViews.sql
DROP VIEW IF EXISTS "userFiles";
DROP VIEW IF EXISTS "userInfo";
DROP VIEW IF EXISTS "album";
[/sql]
-= URL references =-
- `/f/:id` for files
- `/f/:id/thumbnail` for files thumbnails
- `/f/:id.:ext` file direct files
- `/a/:id` for albums
- `/a/:id/thumbnail` for albums thumbnails
- `/u/:username` for users
! nginx rewrite for old urls !
server {
server_name direct.stash.red;
location / {
rewrite ^ $scheme://stash.red/f$request_uri permanent;
}
listen 80;
}