Skip to content

Instantly share code, notes, and snippets.

@sergejmueller
sergejmueller / nginx.conf
Last active August 18, 2022 08:44
Stop search engines from indexing .txt, .log, .xml, .css and .js files in Nginx
location ~* \.(txt|log|xml|css|js)$ {
add_header X-Robots-Tag noindex;
}
@dailymotion-api
dailymotion-api / upload.php
Last active October 19, 2018 15:32
Basic examples showing how to perform video upload using Dailymotion API
<?php
// Using php sdk
$url = $api->uploadFile($testVideoFile);
$api->post(
'/videos',
array('url' => $url,
'title' => 'PHP SDK test upload',
'published' => true,
'channel' => 'videogames')