Skip to content

Instantly share code, notes, and snippets.

View abaicus's full-sized avatar

Andrei Băicuș abaicus

View GitHub Profile
@selul
selul / index.php
Last active July 21, 2021 06:52
Remove login on wordpress site
<?php
/*
Plugin Name: Remove login.
Description: Plugin that removes login WordPress, useful on testing environments. Should never be used on production.
Author: Marius Cristea
Version: 0.0.1
*/
add_action( 'after_setup_theme', function () {
if ( ! is_user_logged_in() ) {
@poul-kg
poul-kg / valet.conf
Last active June 1, 2024 18:41
CORS Rules for Laravel Valet Nginx
# To enable CORS you should add lines with CORS rules below to your valet.conf file
# Find the file /usr/local/etc/nginx/valet/valet.conf - this is Valet conf for Nginx
# of try to execute `locate valet.conf` and find the `valet.coinf` in `nginx` subdirectory
# after you edit your valet.conf do not forget to execute `valet restart`
server {
listen 80 default_server;
root /;
charset utf-8;
client_max_body_size 128M;