File Manager Lite
Dir:
/home/u540325668/domains/mccsociety.org/public_html/config
Upload
[..]
activitylog.php (1.53 KB)
Edit
Rename
Del
app.php (10.02 KB)
Edit
Rename
Del
auth.php (3.71 KB)
Edit
Rename
Del
backup.php (7.92 KB)
Edit
Rename
Del
cache.php (2.99 KB)
Edit
Rename
Del
database.php (4.93 KB)
Edit
Rename
Del
datatables-buttons.php (2.21 KB)
Edit
Rename
Del
datatables.php (3.81 KB)
Edit
Rename
Del
filesystems.php (2.07 KB)
Edit
Rename
Del
hashing.php (1.53 KB)
Edit
Rename
Del
mail.php (4.57 KB)
Edit
Rename
Del
queue.php (2.65 KB)
Edit
Rename
Del
recaptcha.php (4.04 KB)
Edit
Rename
Del
services.php (1.15 KB)
Edit
Rename
Del
sitemap.php (1.51 KB)
Edit
Rename
Del
view.php (1.03 KB)
Edit
Rename
Del
Edit: sitemap.php
<?php use GuzzleHttp\RequestOptions; use Spatie\Sitemap\Crawler\Profile; return [ /* * These options will be passed to GuzzleHttp\Client when it is created. * For in-depth information on all options see the Guzzle docs: * * http://docs.guzzlephp.org/en/stable/request-options.html */ 'guzzle_options' => [ /* * Whether or not cookies are used in a request. */ RequestOptions::COOKIES => true, /* * The number of seconds to wait while trying to connect to a server. * Use 0 to wait indefinitely. */ RequestOptions::CONNECT_TIMEOUT => 10, /* * The timeout of the request in seconds. Use 0 to wait indefinitely. */ RequestOptions::TIMEOUT => 10, /* * Describes the redirect behavior of a request. */ RequestOptions::ALLOW_REDIRECTS => false, ], /* * The sitemap generator can execute JavaScript on each page so it will * discover links that are generated by your JS scripts. This feature * is powered by headless Chrome. */ 'execute_javascript' => false, /* * The package will make an educated guess as to where Google Chrome is installed. * You can also manually pass it's location here. */ 'chrome_binary_path' => null, /* * The sitemap generator uses a CrawlProfile implementation to determine * which urls should be crawled for the sitemap. */ 'crawl_profile' => Profile::class, ];
Simpan