GET https://www.fshare.vn/api/v3/files?path=%2F
{
"items": [{
"id": string,
"linkcode": string,
"secure" "1|0",
"public": "1|0",
"copied": "0|1",
GET https://www.fshare.vn/api/v3/files?path=%2F
{
"items": [{
"id": string,
"linkcode": string,
"secure" "1|0",
"public": "1|0",
"copied": "0|1",
# install php repository | |
add-apt-repository ppa:ondrej/php && apt update -y | |
# install php7.3 and extensions | |
apt install php7.3 php7.3-fpm php7.3-mbstring php7.3-zip php7.3-gd php7.3-mysql php7.3-curl | |
# configure php7.3-fpm default pool to run as nginx and listen on specific port instead of unix socket | |
# open config file with your favourite editor and replace `group www-data` and `user www-data` with `group nginx` and `user nginx` | |
# replace `listen /somewhere/php.sock` to `listen 9003` |
################################################################################################################# | |
# Define the settings for the rook-ceph cluster with common settings for a production cluster. | |
# All nodes with available raw devices will be used for the Ceph cluster. At least three nodes are required | |
# in this example. See the documentation for more details on storage settings available. | |
# For example, to create the cluster: | |
# kubectl create -f common.yaml | |
# kubectl create -f operator.yaml | |
# kubectl create -f cluster.yaml | |
################################################################################################################# |
.voucher { | |
width: 700px; | |
overflow: hidden; | |
position: relative; | |
} | |
.voucher img { | |
width: 700px; | |
} | |
.voucher-discount { | |
position: absolute; |
drop trigger if exists inetdb.inetdbkhuyenmai_theo_gio; | |
use inetdb; | |
DELIMITER $$ | |
CREATE TRIGGER inetdbkhuyenmai_theo_gio BEFORE INSERT ON tblvoucherlog | |
FOR EACH ROW | |
BEGIN | |
-- select the newest payment of this user from paymenttb | |
SET @RECENT_PAYMENT_TYPE = (SELECT VoucherType FROM tblvoucherlog WHERE UserId = NEW.UserId ORDER BY VoucherId DESC LIMIT 1); |
class Sentry { | |
static init() { | |
console.log('fake sentry'); | |
} | |
} |
$Global:BaseDir = "c:\k" | |
$Global:GithubSDNRepository = 'Microsoft/SDN' | |
$Global:GithubSDNBranch = 'master' | |
$Global:NetworkName = "cbr0" | |
$Global:NetworkMode = "l2bridge" | |
$Global:DockerImageTag = "1809" | |
$Global:Configuration = @{} | |
$Global:MasterUsername = "localadmin" | |
$Global:NanoserverImage = "mcr.microsoft.com/windows/nanoserver:1809" |
{ | |
"environment": "dev" | |
} |
server { | |
listen 80 default_server; | |
listen [::]:80 default_server; | |
listen 443 ssl default_server; | |
listen [::]:443 ssl default_server; | |
root /var/www/html; | |
index index.ssp index.html index.htm index.php; | |
server_name _; |
{ | |
"environment": "staging" | |
} |