Open ssl.conf in a text editor.
Edit the domain(s) listed under the [alt_names] section so that they match the local domain name you want to use for your project, e.g.
DNS.1 = my-project.dev
Additional FQDNs can be added if required:
| /*jslint node: true */ | |
| 'use strict'; | |
| module.exports = function (grunt) { | |
| /* | |
| 1. make package.json.js and export the json that will be saved as package.json | |
| 2. run grunt package.json, the new file will be written and you get a patch as well | |
| */ | |
| grunt.registerTask('package.json', function () { |
| #!/bin/bash | |
| # rename TMS tiles to the XYZ schema | |
| # no quoting, since all files have simple numeric names | |
| # do not run this anywhere else than INSIDE your tiles directory | |
| # run it like this: find . -name "*.png" -exec ./tms2xyz.sh {} \; | |
| filename=$1 | |
| tmp=${filename#*/} # remove to first / |
| id: "edit-controls", | |
| type: "custom", | |
| defaultArea: CustomizableUI.AREA_PANEL, | |
| onBuild: function(aDocument) { | |
| let buttons = [{ | |
| id: "cut-button", | |
| command: "cmd_cut", | |
| label: true, | |
| tooltiptext: "tooltiptext2", | |
| shortcutId: "key_cut", |
| <?php | |
| /* | |
| * Wise Timetable to vCalendar Converter | |
| * @Author Marko Zabreznik | |
| * @copyright Marko Zabreznik | |
| * @license http://www.gnu.org/licenses/gpl-3.0.html GNU/GPL | |
| * | |
| * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, | |
| * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR | |
| * PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, |