Skip to content
Snippets Groups Projects
Select Git revision
  • 0f715708dcaa7e25f046b69e3f2709dcd56b9f27
  • master default protected
2 results

.user.ini

Blame
    • Olivier Paroz's avatar
      59facd76
      Create .user.ini for PHP-FPM · 59facd76
      Olivier Paroz authored
      PHP-FPM can't read .htaccess PHP settings unless a PECL extension is installed.
      From version 5.3+ of PHP, settings can be set in .user.ini files
      
      This is a .user.ini file mirroring what is included in the .htaccess file
      TODO: Update the documentation if there are sections documenting how to change some PHP limits
      59facd76
      History
      Create .user.ini for PHP-FPM
      Olivier Paroz authored
      PHP-FPM can't read .htaccess PHP settings unless a PECL extension is installed.
      From version 5.3+ of PHP, settings can be set in .user.ini files
      
      This is a .user.ini file mirroring what is included in the .htaccess file
      TODO: Update the documentation if there are sections documenting how to change some PHP limits
    .jshintrc 511 B
    {
    	"camelcase": true,
    	"eqeqeq": true,
    	"immed": true,
    	"latedef": false,
    	"noarg": true,
    	"nonbsp": true,
    	"undef": true,
    	"unused": true,
    	"trailing": true,
    	"maxparams": 5,
    	"curly": true,
    	"jquery": true,
    	"maxlen": 120,
    	"indent": 4,
    	"browser": true,
    	"globals": {
    		"console": true,
    		"it": true,
    		"xit": true,
    		"expect": true,
    		"describe": true,
    		"beforeEach": true,
    		"afterEach": true,
    		"sinon": true,
    		"fakeServer": true,
    		"_": true,
    		"OC": true,
    		"OCA": true,
    		"t": true,
    		"n": true
    	}
    }