-
Notifications
You must be signed in to change notification settings - Fork 0
/
nginx_location.txt
1824 lines (1822 loc) · 16.9 KB
/
nginx_location.txt
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#
$
$chyrp_path
$pseudo
&G
(assets|view)
(bundles|media)
(cache|covers|gallery|preview|profile|release)
(css|js|fonts|img)
(css|js|img|svg|fonts)
(manifest.json|favicon.ico|robots.txt)
-
.
.git
.htaccess
.well-known
.well-knwon
0.1
1
1.gif
11.12
2
200
2011
2012
2013
26154
301
3rd
400.html
401.html
403.html
404
404.html
413.html
4s
500
500-Wikipedia_Library_owl.svg
500-dog.jpeg
500.html
502.html
50x.html
7154
<%= applicationName %>
<relative_url>
<service-name>
<tart_name>
@spontaneous
A
AWS-MEAN
CGP
CRISPRAnalyzeR
CloudHealthCheck
Content
Demo
ENVRIplus-evaluator
ENVRIplus-evaluator-summary
ENVRIplus-test
ES
FB
FollowUser
FrontEndSvc
J
LICENSE
M00
MP_verify_A3eOsrV82oG3zJ2W.txt
ManageVocabulary
Microsoft-Server-ActiveSync
NginxStatus
Nginxstatus
OHM
PRTG
Panorama
Public
RPC2
RequestDenied
Result_development
SOGo
SOGo.woa
SQLForwarder
SSLPATH
Slides
T-1
TheUndermineJournal.zip
U
UnfollowUser
UploadQueue
UserSearch
Videos
WebDiskDemo
YNH_WWW_PATH
_
__
__F__
__WEB_BASE_DIR__
__WEB_BASE_DIR____GITWEB_DIR__
__admin__
__auth__
__child_request__
__disabled__static
__httpmanager_origin
__local
__mediadrop_serve__
__mesos_dns
__startup__.html
__web-dev-server__web-socket.js
_admin
_ah
_audio
_h5ai
_health
_img
_inc
_internal
_internal_auth
_lazuli
_logs_internal
_maps
_nginx_repo
_oauth
_ping
_replicate
_serverstatus
_silk
_source
_static
_stream
_threescale
_upload
_upload_done
_webhook
_webshell
_websocket
_x_accel_redirect
a
a1
abc
about.html
above
abs
accel_cas
access_handler_in_server_scope
account
account-service
accountingnotes
accountingrep
accounts
acetone_at_mail.i2p.crt
ache
achrails
ack
acmeair
acmevents.ics
action
activiti
adapter
add
addSkitReply
addie
addnote
admin
admin-hw
admin_edia
admin_media
administrator
aggregator
ajax
albums
alerta
alfresco
algorithmservice
alive
all
all_instance
alpha
alpine
am
ammsd.fcgi
ammsed.fcgi
android-chrome-144x144.png
android-chrome-192x192.png
android-chrome-36x36.png
android-chrome-48x48.png
android-chrome-72x72.png
android-chrome-96x96.png
angular-seed
angularjs
annotator-supreme
announc
announcement
answers
api
api-auth
api-docs
api-token-auth
api1
api2
api_backend
apidocs
apis
apk
app
app-config
app.js
app1
app2
app3
app4
appByAppId
app_proxy
appearance
appenv
apple-app-site-association
apple-touch-icon-114x114.png
apple-touch-icon-120x120.png
apple-touch-icon-144x144.png
apple-touch-icon-152x152.png
apple-touch-icon-180x180.png
apple-touch-icon-57x57.png
apple-touch-icon-60x60.png
apple-touch-icon-72x72.png
apple-touch-icon-76x76.png
apple-touch-icon-precomposed.png
apple-touch-icon.png
application
apply_key
appointmed-service
apps
appsByCategory
appstatic
archive
archives
args
arrayify
articles
asana
assets
assign
atom.xml
attachments
attend
attendees-production
audio
aule
auth
auth-header
auth_token.js
authority
authorize
autocomplete
autodeploy
autodiscover
autost
avatar
avatars
avocet
awstats
awstats-icon
az
back
backend
backingservice
backup
badge
baidu-tts-en
baidu-tts-zh
bamboo-path
bamreaddepther
bamstatsalive
bangumi
banners
bapi
bar
bar1
bar2
bar;
bartender
base
basic
basket-api
bazaar
beacon
billcode
bin
bindings
bitbucket
bitbucket-path
bitcoin
bitcoind
bitsandpieces
bla
blacklist
blog
blue
board
body
book
book_post
booking
books
books.Books
boot
bootstrap
bot
bower_components
bpm
branch
broadcast
broadcast-stats
brouter
browse
browser
browser-sync
browser2
browser3
browserconfig.xml
bsp
budget2014
build
builds
bulk-lgtm
bundle
bundles
business
busted
button_contents.html
buyers
by-ip
by-uri
by_block
by_file
c
caRpools
cable
cache
calc
call
callback
callback_backend
cameras
camo
capp1
captcha
capture
captured
captures
car
cardconn
carrots-admin-ajax
cars
cart.json
carws
cas
catalog
catalog-api
cb
cblr
cc-droplets
cc-packages
ccur
cdn
cedeg
centos
centrifugo
cert-service
cfg
cfg-dev
cgi
cgi-bin
ch1
change
change_hook
channels-stats
chartrepo
chat
check
check_feed
checkin
checkout
cheminfo-public
cherry
chromecast
chunked
ci
cite
cj
classes
classic-form
clear
cli
client
client_ip
clientaccesspolicy
clips
clvitra
cms
cnode
cns
cobbler$
cobbler_api
cobbler_web
cobbler_webui_content
code
code-quiz
codebrowser
comet
command
common
community2
compare
comping
complete
composer
computeMetadata
concept
conditional_internal_redirect
config
config.json
configman
configure
confluence
connection
conta
contact
content
content
control
controller
converter
cookie
coopcontrol
core
corrected
corvus
couchdb
couchpotato
counter
coupongenerator
course
courses
coverage
covers
createdb
creator
crm
cron
crossbar
crossdomain
crossdomain.xml
cs-extensions
cslog
css
css
css|
csw
ctx
cuentas
custom
customer
cv
cv-long
cytomine-page-not-found
d
dash
dashboard
data
data1
data2
datasets
db
dbase
dbg
debile
decode_info
deepin
del
delete
demo
demo1
denials
dep
deploy
depot
derk-bot
destroy
dev
developers
devworkflow
dirs
disabled
discussiontool
disk-file
display
displayconfig
dist
dist-
django
django-rq
django_irods
django_metrics
django_static
djangostatic
do_get
do_get_status
do_post
do_post_status
doc
docker
docker-container-count
docker-image-count
docker_resources
docpre
docs
document
document_sets.json
documentation
documentation-fake
documentation-secondfake
documents
domain
donators
dorm-manager
dos_detector
download
download_file
downloads
drive
drmservice_proxy
droplets
dsu
dubbo
dumps
dynamic
dynamic_conf_test
dynamic_resolver_test
dynserv
e
echo
ecl
economy
edit
ee
eis
eis-frontend
elasticproxy
elasticsearch
elb-status
elements.html
elfinder
emacs-melpa
emai
email-invite
empty
empty-gif
en
endpoints_status
enhancer
enroll
entry
ep
errdoc
error
error_400
error_page.html
error_pages
errors
es
etc
ethercalc
etherpad
eureka
event
event_discovery
event_resolver_test
event_source
event_timer_test
eventmap
events
evget
evsub
example
examples
execute
execute-query
exercises
exist
explorer
export
ext
external_server_request
externalpath
ey
eyeblaster
f
f6e0bcc7dde91493ea3cbf1282b48300
facebook
facebook-ads
fail
fallback_proxy
faq
favicon-16x16.png
favicon-32x32.png
favicon-96x96.png
favicon.ico
favicon.png
faye
fbpac-api
fcgi
fe
feature
features
feed
feedback
fhir
file
file-content
file_count
files
filter
filter_dynamic_arg
filter_dynamic_arg_file
filtered
finish
firehol-manual
fix-bug-issue-155
flapjack
flapjack_api
flarum
flight
flippy
flow
flower
flu
fm
font
font-icons
fonts
foo
foo1
foo2
foo;
for potential security issues, req. are internal
forbidden
form
forms
forms.html
fortunes
fpc
fpm_ping
fpm_status
fr-doc
fragment
freelimit
frontdesk
frontend
fulfillment
funding
fusedav-peer-cache
fwtest
g00
galleries
game
gapprole
gatekeeper
gcompany
gcontrol
gcs;
gem
generateCredentials
generate_204
genrei
geocoder
geonetwork
geoserver
geovisu
geoworld
gerrit
get
get2
getFollowing
getRabbitCredentials
get_current_server_time
get_deposit
get_post_args
get_random_string
get_session
get_table
get_uri_args
get_wspr_decodes
get_wspr_status
getimserver
getting-help
getting-involved
gettingstarted
ggroups
ghost
gie_proxy
gisdata
git
gitbucket
github
gitweb
glaf
global
go
goaccess
google-ajax
google-fonts
google11c87f3c0ff2b460.html
grafana
grafterizer-dispatch
graftwerk
graftwerk-cache
graph
graph-services
graphite
graphql
graphs
gravatar
green
group1
groupsumvalue
gt
guacamole
gui
guide
guides
gusers
gusersgroups
gwells
gzip
gzip-proxy-cache
gzip-static
gzip-static-proxy-cache
hackers.txt
haproxy_<%= ic.name %>
hash_me
hashd.fcgi
hawtio
hdel
head
header
header_in
header_out
headers
headers_in_delete
headers_out_delete
headphones
health
health-check
healthcheck
healthz
hello
hello-mruby
hello-world
hello.txt
helloworld
helloworld.Greeter
helpdesk
hexist
hget
hget2
hgs-static
hincrby
hipiler
hit
hkeys
hl
hls
home
hook.pub
hooks
hope
horizon
hortiradar
hostname
hotspot
hr
hset
htpc
http
http-bind
https_nginx_status
hub
hubot
humans.txt
hustcache
hustdb
hustmq
hw
i
i-log
i18n
i2pseeds.su3
icecast
icinga
icon
icons
identity
idrop-web2
iiab
iiif
ilm
im
image
image_cache
imagedata
images
images
images_fs_dir
img
img1
imgs
ims-api
in
includes
index
index.html
index.html last;
index.php
index.pl
influx-api
info
infoflow
ingress
inline_concat
install
installation
inter_var_file
inter_var_inline
interactivemap
internal
internal-nginx-static-location
intl
invoking
io
ipfs
ipns
isomorphic
issue_172
issue_172_2
issue_210
issue_210_2
item
itvplayer
j_spring_security
jarfter
java
javascript
jbrowse
jde
jenkins
jira-path
jmap
join
journal
jquery
js
js
js-plugin
json
json-schema
jsonrpc
jsons_get
jsons_set
jupyter
just-signed-up
jwks.json
kalapi_proxy
kanban
kanboard
kcs
keepalive
keeper
keeper-webSocket
kernel_servername
keybase.txt
keys
khanvideo
kibana
kirby
kjv
klusterkite
kodi
konfetti
koru
l
lab
labadmin
lambda
landing
landing-dev
language
languages
lanschool
launch
layouts.html
lb-services.js
lcc
leaderboard
leanbean
learntoprogram.html
led
lednet
legacy
legal
letter_avatar_proxy
lib
library
libzcoderz.js.mem
lic_upload
license.md
link
link_gateway
list
live
liveness_check
livereload
liveviewhandler
ljprojectbuilder
loadlimit
local
local_upstream_pub
locales
locations-api
lock
log
log-gif
log.gif
logIn
logOut
loganalyzer
logfile-download
logged-out
login
loginProxy
logio
logout
logoutProxy
logs
logs_archive
longpolling
look
lower
lower_header_and_upper_body
ltb
ltbapi
ltsv
lua
lua2go
lua_get_body_file
lua_get_method
lua_memcached
lua_redis
lua_rewrite
lua_test
lua_var
lua_var2
luaset
luna
m2mportal
mBGWHqBVEjUSKpBF
madsonic
mail
mailer-webservice
mailpile
main
main.js.map
maintenance
mall
manage
manager
manager.psgi
manifest.json
manual
manual.pdf
map
map_test
mapas
mapcache
mapproxy
maps
mapserv
mapserver
maraschino
mark
marketing-api
markets
markup
massregister
maven
max
mdm
measurement
media
media-download
mediainfo
mediaplayer