This is a Chinese version of https://gist.github.com/1207002/86f48cd3b3b72c85e6293926cf7c730de03b2f08 from lucasfais
| ⌘T | 前往文件 |
| ⌘⌃P | 前往项目 |
| ⌘R | 前往 method |
| ⌘⇧P | 命令提示 |
| #!/usr/bin/env python3 | |
| # coding=utf-8 | |
| import json | |
| from ansible.executor.task_queue_manager import TaskQueueManager | |
| from ansible.inventory import Inventory | |
| from ansible.inventory.group import Group | |
| from ansible.inventory.host import Host | |
| from ansible.parsing.dataloader import DataLoader | |
| from ansible.playbook.play import Play |
This is a Chinese version of https://gist.github.com/1207002/86f48cd3b3b72c85e6293926cf7c730de03b2f08 from lucasfais
| ⌘T | 前往文件 |
| ⌘⌃P | 前往项目 |
| ⌘R | 前往 method |
| ⌘⇧P | 命令提示 |
| # Add this to your nginx.conf under http { } | |
| server { | |
| listen 843; | |
| server_name localhost; | |
| location / { | |
| rewrite ^(.*)$ /crossdomain.xml; | |
| } |