For faster connection speed and more flexibility.
- Start Xcode in command line by running this in commandline
/Applications/Xcode.app/Contents/MacOS/Xcode - Start downloading of the simulator
- Cancel it. YES CANCEL IT!
- You will get a message like this:
| Ansible playbook to setup HTTPS using Let's encrypt on nginx. | |
| The Ansible playbook installs everything needed to serve static files from a nginx server over HTTPS. | |
| The server pass A rating on [SSL Labs](https://www.ssllabs.com/). | |
| To use: | |
| 1. Install [Ansible](https://www.ansible.com/) | |
| 2. Setup an Ubuntu 16.04 server accessible over ssh | |
| 3. Create `/etc/ansible/hosts` according to template below and change example.com to your domain | |
| 4. Copy the rest of the files to an empty directory (`playbook.yml` in the root of that folder and the rest in the `templates` subfolder) |
| # Create the project directory | |
| # This will hold both the Bedrock and Trellis installs | |
| mkdir $1 | |
| cd $1 && git init && cd .. | |
| # Install Roots Bedrock | |
| echo -e "\033[33;36m Installing Bedrock via Composer into $1/site ..."; | |
| composer create-project roots/bedrock $1/site |
| server { | |
| listen 80 default_server; | |
| listen [::]:80 default_server; | |
| root /your/root/path; | |
| index index.html; | |
| server_name you.server.com; |
| # Should go into `/etc/nginx/sites-available` as file named `default` | |
| # Redirect HTTP to HTTPS | |
| server { | |
| listen 80; | |
| return 301 https://$host$request_uri; | |
| } | |
| server { | |
| listen 443; |
| <html lang="en"> | |
| <head> | |
| <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script> | |
| <style> | |
| html, | |
| body { | |
| padding: 0; |
| FROM node:lts-alpine AS build-stage | |
| WORKDIR /app | |
| COPY package*.json ./ | |
| RUN npm install | |
| COPY . . | |
| RUN npm run build | |
| FROM nginx:stable-alpine | |
| COPY --from=build-stage /app/dist /usr/share/nginx/html | |
| # this isn't necessary - you don't have to expose a port here |
| iOS 10.2 Simulator: https://devimages-cdn.apple.com/downloads/xcode/simulators/com.apple.pkg.iPhoneSimulatorSDK10_2-10.2.1.1484185528.dmg | |
| iOS 10.1 Simulator: https://devimages-cdn.apple.com/downloads/xcode/simulators/com.apple.pkg.iPhoneSimulatorSDK10_1-10.1.1.1476902849.dmg | |
| iOS 10.0 Simulator: https://devimages-cdn.apple.com/downloads/xcode/simulators/com.apple.pkg.iPhoneSimulatorSDK10_0-10.0.1.1474488730.dmg | |
| iOS 9.3 Simulator: https://devimages.apple.com.edgekey.net/downloads/xcode/simulators/com.apple.pkg.iPhoneSimulatorSDK9_3-9.3.1.1460411551.dmg | |
| iOS 9.2 Simulator: https://devimages.apple.com.edgekey.net/downloads/xcode/simulators/com.apple.pkg.iPhoneSimulatorSDK9_2-9.2.1.1451951473.dmg | |
| iOS 9.1 Simulator: https://devimages.apple.com.edgekey.net/downloads/xcode/simulators/com.apple.pkg.iPhoneSimulatorSDK9_1-9.1.1.1446593668.dmg | |
| iOS 9.0 Simulator: https://devimages.apple.com.edgekey.net/downloads/xcode/simulators/com.apple.pkg.iPhoneSimulatorSDK9_0-9.0.1.1443554484.dmg | |
| iOS 8.4 Simulator: https://devimages.a |
For faster connection speed and more flexibility.
/Applications/Xcode.app/Contents/MacOS/Xcode| LICENCE SUBLIME TEXT 3 BUILD 3207 | |
| it's work | |
| Block these in nano /etc/hosts | |
| 127.0.0.1 www.sublimetext.com | |
| 127.0.0.1 sublimetext.com | |
| 127.0.0.1 sublimehq.com | |
| 127.0.0.1 license.sublimehq.com | |
| 127.0.0.1 45.55.255.55 | |
| 127.0.0.1 45.55.41.223 |
| # Change YOUR_TOKEN to your prerender token | |
| # Change example.com (server_name) to your website url | |
| # Change /path/to/your/root to the correct value | |
| server { | |
| listen 80; | |
| server_name example.com; | |
| root /path/to/your/root; | |
| index index.html; |