summaryrefslogtreecommitdiffstats
path: root/src/etc/inc/system.inc
Commit message (Collapse)AuthorAgeFilesLines
* Set HTTP_PROXY to empty as recommended at https://httpoxy.org/#fix-nowRenato Botelho2016-07-181-0/+2
|
* Move to Apache License 2.0Renato Botelho2016-07-151-41/+9
|
* Review license / copyright on all files (final round)Renato Botelho2016-07-151-1/+1
|
* Review license / copyright on all files (1st round)Renato Botelho2016-07-141-54/+54
|
* Exclude non-qualified hostnames from hosts file. Ticket #6064Chris Buechler2016-07-081-12/+12
|
* Missing closing quotedoktornotor2016-07-081-1/+1
|
* Create /var/run/dmesg.boot symlink for vm-bhyve (Feature #6573)doktornotor2016-07-081-0/+3
| | | See https://redmine.pfsense.org/issues/6573
* Include interface scope on IPv6 static routes to link local gateway IPs. ↵Chris Buechler2016-06-241-0/+4
| | | | Ticket #6506
* This needs a newlinejim-p2016-06-061-1/+1
|
* Set keepalive_timeout 0 where captive portal in use, and update otherwise to ↵Chris Buechler2016-06-031-1/+3
| | | | nginx's current default of 75. Ticket #6421
* Prefer index.php over index.html where both exist.Chris Buechler2016-05-111-1/+1
|
* A simple fix for #6120Renato Botelho2016-05-091-14/+0
| | | | | - Retire system_console_configure() - Replace above call on rc.bootup by setup_serial_port()
* Add Hyper-V support to system_identify_specific_platform, and disable ↵Chris Buechler2016-04-231-3/+10
| | | | S.M.A.R.T. actions in Hyper-V guests. Ticket #6147
* Ticket #6053Renato Botelho2016-04-041-6/+1
| | | | | | | | - Do not call ntpdate before start ntpd, ntpd -g parameter is enough - Deprecate /usr/local/sbin/ntpdate_sync_once.sh - Remove system_ntp_configure parameter and always start ntpd (cherry picked from commit 5a758355ec9a20ff75c9191b6915df64255fb8be)
* Remove unused function sync_system_time()Renato Botelho2016-04-041-18/+0
| | | | (cherry picked from commit 67c934440521e8081d90850f4a10a40e82603db3)
* Implement system_get_serial()Renato Botelho2016-03-281-0/+15
|
* Remove dead codeRenato Botelho2016-03-281-8/+0
|
* Identify specific hardware models of some Netgate productsRenato Botelho2016-03-281-3/+20
|
* Rename variable to a name that make senseRenato Botelho2016-03-281-7/+7
|
* Don't log 404s for captive portal. Ticket #6027Chris Buechler2016-03-271-1/+1
|
* Remove ssl_stapling. Ticket #6020Chris Buechler2016-03-221-2/+0
|
* Don't log to filter.log when local logging is disabled. Ticket #6018Chris Buechler2016-03-211-1/+4
|
* Cleanup nginx configuration fileJose Luis Duran2016-03-191-21/+27
| | | | | | | | | - Fix indentations - Use the `ssl` parameter of the `listen` directive [1] - Change the rewrite rule to use the recommended syntax [2] [1]: http://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl [2]: http://nginx.org/en/docs/http/converting_rewrite_rules.html
* Use product name rather than smbios here.Chris Buechler2016-03-141-1/+1
|
* Disable TLSv1.0 for web GUI's nginx instance. Ticket #5984Chris Buechler2016-03-121-1/+6
|
* Merge RCC add, 1540 name fix, from 2_2 branch.Chris Buechler2016-03-111-1/+5
|
* log dhcpleases and dhcpleases6 to dhcpd.log. Ticket #5968Chris Buechler2016-03-081-1/+1
|
* Remove duplicated text/javascriptChris Buechler2016-03-051-1/+1
|
* Update nginx gzip_types. Remove text/html since it's redundant, and add a ↵Chris Buechler2016-03-041-1/+1
| | | | few others. Particularly useful, json, since status_monitoring.php uses it. Reduces load time on slow connections to about 1/4th of what it is without gzip on json. Ticket #5498
* Move NTP access restrictions to their own tab and add the ability to craft ↵jim-p2016-03-031-2/+35
| | | | custom restrictions for arbitrary networks. Fixes #4463
* Fix #3029Renato Botelho2016-02-191-5/+4
| | | | Teach system_hosts_generate() to deal with PD length != 64
* Ticket #3029Renato Botelho2016-02-191-6/+17
| | | | | | | Import patch from @Robert-Nelson to enable DHCPv6 Server/RA to interfaces configured to track DHCP-PD This patch only works for PD with length 64
* Internationalize etc inc i through sPhil Davis2016-02-181-9/+9
|
* Prefer dnsmasq's host overrides when it's enabled. Ticket #5883Chris Buechler2016-02-111-3/+5
|
* Fix style issues.Chris Buechler2016-02-091-1/+2
|
* Review of CARP uniqid changes.Luiz Otavio O Souza2016-02-091-9/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It turns out that current CARP implementation is not much different from an IP alias. This commit converts the IP alias to also use the CARP uniqid scheme, this simplify the code in all other places because now we have only two different cases to deal with: - A friendly interface name (lan, wan, opt1, etc.); - A Virtual IP - VIP alias (_vip{$uniqid}) - CARP or IP Alias. The parent of a CARP is always a friendly interface. The parent of an IP alias can be a friendly interface or a CARP (this is the only case of recursion of a VIP). This commit removes a few cases where CARP were still considered a interface (the old CARP implementation), fixes all the wrong cases of strpos() being used to detect a VIP address (wont work as it returns '0' which fails when tested as 'TRUE'), review the usage of CARP and IP alias as services bind addresses, fixes general issues of adding and editing VIP addresses. The following subsystems were affected by this changes: - IPSEC; - OpenVPN; - dnsmasq; - NTP; - gateways and gateway groups; - IPv6 RA; - GRE interfaces; - CARP status; - Referrer authentication. Fixes (and/or revisit) the following tickets: - Ticket #3257 - Ticket #3716 - Ticket #4450 - Ticket #4858 - Ticket #5441 - Ticket #5442 - Ticket #5500 - Ticket #5783 - Ticket #5844
* Enable gzip compression in nginx.Chris Buechler2016-02-041-0/+3
|
* Set fastcgi_read_timeout to 180 seconds rather than the default 60 for the ↵Chris Buechler2016-02-011-0/+1
| | | | occasional long-running page.
* Remove all additional packages from the system before reset to factory ↵Renato Botelho2016-02-011-0/+1
| | | | default. Fixes #5829
* Remove static routes to DNS servers when gateway is disabled. It should fix ↵Renato Botelho2016-01-281-8/+14
| | | | #4921
* Simplify logicRenato Botelho2016-01-281-19/+14
|
* Fix dns test for localhost inclusion, when saving now the port value can be ↵jim-p2016-01-161-2/+2
| | | | set but empty. Fixes #5775
* Update license on files from /etc/incRenato Botelho2016-01-151-14/+41
|
* Use case-insensitive regex matching for http_host in nginx captive portal ↵Chris Buechler2016-01-111-2/+2
| | | | configs.
* Match nginx max body size with PHP's upload_max_filesizeChris Buechler2016-01-111-1/+1
|
* set nginx client_max_body_size large enough for config restore and other ↵Chris Buechler2016-01-111-0/+1
| | | | purposes.
* 10m ssl_session_cache is adequate for our use cases.Chris Buechler2016-01-071-1/+1
|
* Use the local dh-parameters for nginx rather than the default.Chris Buechler2016-01-071-0/+1
|
* Make sure httpsname is a valid domain to avoid breaking nginx confRenato Botelho2016-01-071-1/+2
|
* Merge pull request #2355 from jlduran/no-preload-in-hstsChris Buechler2016-01-061-1/+1
|\
OpenPOWER on IntegriCloud