Skip to content

Instantly share code, notes, and snippets.

View kapv89's full-sized avatar

kapil verma kapv89

  • Bangalore, India
  • 04:25 (UTC +05:30)
View GitHub Profile
@kapv89
kapv89 / myserver.conf
Created August 24, 2021 18:50 — forked from canadaduane/myserver.conf
nginx configuration for yjs over https reverse proxy
server {
listen 80 ;
# listen [::]:80 ipv6only=on;
root /var/www/html;
index index.php index.html index.htm;
server_name y.relm.us;
location / {
@kapv89
kapv89 / gist:5656794
Last active December 17, 2015 18:59 — forked from whisher/gist:5656791
<?php
Route::get('/', function()
{
return View::make('home.index');
});
Route::controller('home');