CodeIgniter 3 app for dinbestehjelper.no. Excludes vendor/, local backup folders (new/, archive/, archived/) and DB dumps (*.sql) via .gitignore. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01P16ttGUge8zj91dm6WrmEb
20 lines
517 B
PHP
20 lines
517 B
PHP
<?php
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
/*
|
|
| -------------------------------------------------------------------------
|
|
| Memcached settings
|
|
| -------------------------------------------------------------------------
|
|
| Your Memcached servers can be specified below.
|
|
|
|
|
| See: https://codeigniter.com/userguide3/libraries/caching.html#memcached
|
|
|
|
|
*/
|
|
$config = array(
|
|
'default' => array(
|
|
'hostname' => '127.0.0.1',
|
|
'port' => '11211',
|
|
'weight' => '1',
|
|
),
|
|
);
|