Skip to content

Instantly share code, notes, and snippets.

@shieldwed
shieldwed / README.md
Last active April 22, 2018 22:19
For instructions and details about this patch please see README.md at the end of this page (below the patch).
@shieldwed
shieldwed / nginx-vh.conf
Created February 7, 2018 22:04
Nginx config to run Nextcloud and Collabora on the same virtual host
upstream php-fpm-handler {
server ${NEXTCLOUD_FPM_HOST}:${NEXTCLOUD_FPM_PORT};
}
upstream collabora-handler {
server ${COLLABORA_HOST}:${COLLABORA_PORT};
}
server {
listen ${NGINX_PORT};
@shieldwed
shieldwed / http_server.py
Created October 14, 2017 21:01
A simple python HTTP server which responds with the original request headers and request path
#!/usr/bin/env python
from http.server import BaseHTTPRequestHandler, HTTPServer
# HTTPRequestHandler class
class testHTTPServer_RequestHandler(BaseHTTPRequestHandler):
# GET
def do_GET(self):
# Send response status code
# Maintainer: Alex Taber <aft dot pokemon at gmail dot com>
pkgname=teamviewer
pkgver=12.0.71510
pkgrel=7
pkgdesc='All-In-One Software for Remote Support and Online Meetings'
arch=('i686' 'x86_64')
url='http://www.teamviewer.com'
license=('custom')
options=('!strip')
From 9f674b615340ec68e9879b02980215df24b7fec9 Mon Sep 17 00:00:00 2001
From: Daniel Wilhelm <shieldwed@outlook.com>
Date: Thu, 24 Nov 2016 11:23:35 +0100
Subject: [PATCH] bump to 0.7.13
---
.SRCINFO | 12 ++++++------
PKGBUILD | 6 +++---
2 files changed, 9 insertions(+), 9 deletions(-)