Sponsored Content
The Lounge What is on Your Mind? Your site has been switched to Mobile First Indexing Post 303038677 by Neo on Wednesday 11th of September 2019 07:07:22 AM
Old 09-11-2019
TURNED OFF FOR NOW - BREAKS THINGS

OK... testing this non-default mod_pagespeed config now:

Code:
    # Explicitly enables specific filters. This is useful in
    # conjuction with ModPagespeedRewriteLevel. For instance, filters
    # not included in the CoreFilters may be enabled using this
    # directive. This directive contains a comma-separated list of
    # filter names, and can be repeated.
    #
    ModPagespeedEnableFilters rewrite_javascript,rewrite_css
    ModPagespeedEnableFilters collapse_whitespace,elide_attributes

 

8 More Discussions You Might Find Interesting

1. IP Networking

port access to site to site VPN

Setup a site to site VPN between two cisco routers. One of the site locations is unable to access ports such as https://example.com:9001 How do I let them go into port 9001? They can ssh, ftp, telnet and everything else. Is this a VPN issue or ACL access issue? I put permit ip host... (0 Replies)
Discussion started by: photon
0 Replies

2. Shell Programming and Scripting

indexing a file

hello guys, I have a file like this: input.dat Push-to-talk No Coonection IP support Support for IP telephony Yes Built-in SIP stack Yes Support via software Yes Microsoft Support for Microsoft Exchange Yes UMA (5 Replies)
Discussion started by: Johanni
5 Replies

3. IP Networking

How to establish site to site vpn - Linux machine and cisco asa?

Hi, I am trying to establish vpn between my linux server and cisco asa at client side. I installed openswan on my cent os. Linux Server eth0 - 182.2.29.10 Gateway - 182.2.29.1 eth1 - 192.9.200.75 I have simple IPtables Like WAN="eth0" LAN="eth1" (0 Replies)
Discussion started by: ashokvpp
0 Replies

4. IP Networking

Does cisco 1921 router support site to site VPNs using IPSec?

Q: "Does Cisco 1921 router support,, act as an endpoint for, site to site VPNs using IPSec? If so, how many? " A: If you get the Cisco 1921/k9 with the security services bundle then it will have built in security features. Cisco, typically includes IP Sec tunnels I believe as part of that... (0 Replies)
Discussion started by: Ayaerlee
0 Replies

5. IP Networking

IPSec Openswan Site to Site VPN - Big Pain

Hi @all, I try to connect 2 LANs with IPSec/Openswan LAN 1: 192.168.0.0/24 LAN 2: 192.168.1.0/24 This is my Config: conn HomeVPN # # Left security gateway, subnet behind it, nexthop toward right. left=192.168.1.29 ... (1 Reply)
Discussion started by: bahnhasser83
1 Replies

6. IP Networking

Node switched itself from static to DHCP on reboot issue

I'm trying to figure out what circumstances would cause an Open Solaris 11.2 host to switch itself from a static to a DHCP ip address upon reboot. This has only happened once but is a cause for some concern as this machine will be part of a web server pool. Nothing has changed on the LAN that... (2 Replies)
Discussion started by: SmokeyJoe
2 Replies

7. What is on Your Mind?

New UNIX.COM Mobile Site Icons

Having given up for the time being with a very difficult game engine project to virtualizing cyberspace, am working on the forums again. Just updated a few icons on the mobile site. Explanations in the picture captions: https://www.unix.com/members/1-albums214-picture855.jpeg ... (1 Reply)
Discussion started by: Neo
1 Replies

8. What is on Your Mind?

Mobile Thanks Now Visible in Mobile

Hey, I have enable post thanks (viewing thanks, not yet giving thanks) in mobile: https://www.unix.com/members/1-albums214-picture1018.jpeg I plan to also add the button to "give thanks on mobile. In addition, I will change the formatting (color and justification) of this new mobile... (1 Reply)
Discussion started by: Neo
1 Replies
UDISKS-GLUE.CONF(5)						udisks-glue Manual					       UDISKS-GLUE.CONF(5)

NAME
udisks-glue.conf - udisks-glue configuration file format SYNOPSIS
~/.udisks-glue.conf $XDG_CONFIG_HOME/udisks-glue/config /etc/udisks-glue.conf $XDG_CONFIG_DIRS/udisks-glue/config DESCRIPTION
udisks-glue is configured by a series of match directives referencing filter directives. Filter directives define parameters that filter the UDisks events. Match directives specify actions to be taken by udisks-glue in case the corresponded filter matches. Filter and match directives can be specified in any order. You should use unique names for filter directives. The rules are evaluated in the order the match directives are specified. A default directive is a special directive used as a fallback in case no other directives match. It does not reference a filter directive. You may choose not to specify a default directive. Due to the way the rules are evaluated, it's recommended that more specific match directives are defined before less specific ones. If a match directive does not specify one of the available actions, another directive may be chosen. The currently available match directives are: automount If set, try to automatically mount the device (unset by default) automount_filesystem Filesystem type to use when automounting the device automount_options List of options to use when automounting the device post_insertion_command Command to run after a device is inserted or after its media has been made available post_mount_command Command to run after a device has been mounted post_unmount_command Command to run after a device has been unmounted post_removal_command Command to run after a device or its media has been removed udisks-glue will substitute some tokens with information about the device in each of the commands listed above: %device_file Path to the device file %mount_point Last known mount point for the device (only replaced in post_mount_command and post_unmount_command) The currently supported filter parameters are: label (string) User-visible label of the detected file system optical (boolean) Set if the device uses optical disc as its media optical_disc_closed (boolean) Set if the optical disc is closed optical_disc_has_audio_tracks (boolean) Set if the optical disc has audio tracks optical_disc_has_audio_tracks_only (boolean) Set if all tracks in the optical disc are audio tracks partition (boolean) Set if the device is a partition of another device partition_table (boolean) Set if the device has a partition table readonly (boolean) Set if the device is a ready-only device removable (boolean) Set if the device is a removable device type (string) Extended information about the device, generally set to the name of the detected file system if the usage property is set to filesystem usage (string) The result of probing for signatures on the block device, generally set to filesystem if a mountable file system was detected uuid (string) UUID of the detected file system Note that the rules are evaluated only at the time the device or its media is inserted. Internal drives are always ignored. EXAMPLE
The following configuration example shows how you can automount USB pendrives and similar devices. Notifications are provided by a custom script that could display on-screen information or provide notifications in some other way: filter disks { optical = false partition_table = false usage = filesystem } match disks { automount = true automount_options = sync post_mount_command = "mount-notify mounted %device_file %mount_point" post_unmount_command = "mount-notify unmounted %device_file %mount_point" } A more complex example shows how the filters can be used to mount optical and non-optical media (USB pendrives and the like) using differ- ent mount options and how a specific program can be launched on non-closed optical discs. # # Filters # filter disks { optical = false partition_table = false usage = filesystem } filter burnable { optical = true optical_disc_closed = false } filter optical { optical = true } # # The default entry (only used if no filters match) # default { post_insertion_command = "insertion-notify %device_file" } # # Additional entries # match disks { automount = true automount_options = { sync, noatime } post_mount_command = "mount-notify mounted %device_file %mount_point" post_unmount_command = "mount-notify unmounted %device_file %mount_point" } match burnable { post_insertion_command = "k3b %device_file" post_mount_command = "mount-notify mounted %device_file %mount_point" post_insertion_command = "udisks --mount %device_file --mount-options ro" } match optical { automount = true automount_options = ro post_mount_command = "mount-notify mounted %device_file %mount_point" post_insertion_command = "udisks --mount %device_file --mount-options ro" } SEE ALSO
udisks(1), udisks-glue(1) udisks(7), udisks-daemon(8) udisks-glue 2011-04-20 UDISKS-GLUE.CONF(5)
All times are GMT -4. The time now is 06:17 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy